reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
 5387       if (m_data.GetU32(&offset, &ident_command, 2) == nullptr)
 5389       if (ident_command.cmd == LC_IDENT && ident_command.cmdsize != 0) {
 5389       if (ident_command.cmd == LC_IDENT && ident_command.cmdsize != 0) {
 5390         char *buf = (char *)malloc(ident_command.cmdsize);
 5391         if (buf != nullptr && m_data.CopyData(offset, ident_command.cmdsize,
 5392                                               buf) == ident_command.cmdsize) {
 5393           buf[ident_command.cmdsize - 1] = '\0';
 5399       offset = cmd_offset + ident_command.cmdsize;