Home
last modified time | relevance | path

Searched refs:uuid_command (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/macosx/unregistered-macho/
H A Dmain.c9 sizeof(struct segment_command_64) + sizeof(struct uuid_command); in main()
41 struct uuid_command uuid; in main()
/llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/
H A DMachO.def51 HANDLE_LOAD_COMMAND(LC_UUID, 0x0000001Bu, uuid_command)
113 LOAD_COMMAND_STRUCT(uuid_command)
H A DMachO.h788 struct uuid_command { struct
1220 inline void swapStruct(uuid_command &u) { in swapStruct()
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_procmaps_mac.cpp339 const uuid_command *uuid_lc = (const uuid_command *)lc; in FindUUID()
/llvm-project-15.0.7/lldb/test/API/macosx/lc-note/kern-ver-str/
H A Dcreate-empty-corefile.cpp220 struct uuid_command uuidcmd; in get_uuid_from_binary()
/llvm-project-15.0.7/lld/MachO/
H A DWriter.cpp486 uint32_t getSize() const override { return sizeof(uuid_command); } in getSize()
489 auto *c = reinterpret_cast<uuid_command *>(buf); in writeTo()
497 static_assert(sizeof(uuid_command::uuid) == 16, "unexpected uuid size"); in writeUuid()
/llvm-project-15.0.7/lldb/test/API/macosx/lc-note/firmware-corefile/
H A Dcreate-empty-corefile.cpp266 struct uuid_command uuidcmd; in get_uuid_from_binary()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DMachOYAML.cpp590 void MappingTraits<MachO::uuid_command>::mapping( in mapping()
591 IO &IO, MachO::uuid_command &LoadCommand) { in mapping()
/llvm-project-15.0.7/llvm/tools/dsymutil/
H A DMachOUtils.cpp399 MachO::uuid_command UUIDCmd; in generateDsymCompanion()
/llvm-project-15.0.7/llvm/include/llvm/Object/
H A DMachO.h644 MachO::uuid_command
/llvm-project-15.0.7/llvm/lib/Object/
H A DMachOObjectFile.cpp1389 if (Load.C.cmdsize != sizeof(MachO::uuid_command)) { in MachOObjectFile()
4518 MachO::uuid_command
4520 return getStruct<MachO::uuid_command>(*this, L.Ptr); in getUuidCommand()
4867 const char *Ptr = UuidLoadCmd + offsetof(MachO::uuid_command, uuid); in getUuid()
/llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.mm863 struct uuid_command uuidcmd;
864 if (ReadMemory(load_cmds_p, sizeof(struct uuid_command), &uuidcmd) ==
865 sizeof(struct uuid_command))
/llvm-project-15.0.7/llvm/tools/llvm-objdump/
H A DMachODump.cpp9078 static void PrintUuidLoadCommand(MachO::uuid_command uuid) { in PrintUuidLoadCommand()
9081 if (uuid.cmdsize != sizeof(struct MachO::uuid_command)) in PrintUuidLoadCommand()
10165 MachO::uuid_command Uuid = Obj->getUuidCommand(Command); in PrintLoadCommands()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp4818 llvm::MachO::uuid_command load_cmd;