Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMachO.def51 HANDLE_LOAD_COMMAND(LC_UUID, 0x0000001Bu, uuid_command)
115 LOAD_COMMAND_STRUCT(uuid_command)
H A DMachO.h789 struct uuid_command { struct
1332 inline void swapStruct(uuid_command &u) { in swapStruct()
/src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_procmaps_mac.cpp341 const uuid_command *uuid_lc = (const uuid_command *)lc; in FindUUID()
/src/contrib/llvm-project/lld/MachO/
H A DWriter.cpp514 uint32_t getSize() const override { return sizeof(uuid_command); } in getSize()
517 auto *c = reinterpret_cast<uuid_command *>(buf); in writeTo()
525 static_assert(sizeof(uuid_command::uuid) == 16, "unexpected uuid size"); in writeUuid()
/src/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMachOYAML.cpp601 void MappingTraits<MachO::uuid_command>::mapping( in mapping()
602 IO &IO, MachO::uuid_command &LoadCommand) { in mapping()
/src/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachO.h676 MachO::uuid_command
/src/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp1401 if (Load.C.cmdsize != sizeof(MachO::uuid_command)) { in MachOObjectFile()
4710 MachO::uuid_command
4712 return getStruct<MachO::uuid_command>(*this, L.Ptr); in getUuidCommand()
5289 const char *Ptr = UuidLoadCmd + offsetof(MachO::uuid_command, uuid); in getUuid()
/src/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp9052 static void PrintUuidLoadCommand(MachO::uuid_command uuid) { in PrintUuidLoadCommand()
9055 if (uuid.cmdsize != sizeof(struct MachO::uuid_command)) in PrintUuidLoadCommand()
10141 MachO::uuid_command Uuid = Obj->getUuidCommand(Command); in PrintLoadCommands()