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
 5774       if (m_data.GetU32(&offset, &lc.cmd, 2) == nullptr)
 5776       if (lc.cmd == llvm::MachO::LC_VERSION_MIN_MACOSX ||
 5777           lc.cmd == llvm::MachO::LC_VERSION_MIN_IPHONEOS ||
 5778           lc.cmd == llvm::MachO::LC_VERSION_MIN_TVOS ||
 5779           lc.cmd == llvm::MachO::LC_VERSION_MIN_WATCHOS) {
 5780         if (m_data.GetU32(&offset, &lc.version,
 5781                           (sizeof(lc) / sizeof(uint32_t)) - 2)) {
 5782           const uint32_t xxxx = lc.version >> 16;
 5783           const uint32_t yy = (lc.version >> 8) & 0xffu;
 5784           const uint32_t zz = lc.version & 0xffu;
 5790       } else if (lc.cmd == llvm::MachO::LC_BUILD_VERSION) {
 5816       offset = load_cmd_offset + lc.cmdsize;