Home | History | Annotate | Download | only in llvm-objdump

Lines Matching refs:Uuid

7812 static void PrintUuidLoadCommand(MachO::uuid_command uuid) {
7814 outs() << " cmdsize " << uuid.cmdsize;
7815 if (uuid.cmdsize != sizeof(struct MachO::uuid_command))
7819 outs() << " uuid ";
7821 outs() << format("%02" PRIX32, uuid.uuid[i]);
8571 MachO::uuid_command Uuid = Obj->getUuidCommand(Command);
8572 PrintUuidLoadCommand(Uuid);