Home
last modified time | relevance | path

Searched refs:linker_option_command (Results 1 – 6 of 6) sorted by relevance

/external/llvm/tools/macho-dump/
Dmacho-dump.cpp303 MachO::linker_option_command LOLC = Obj.getLinkerOptionLoadCommand(LCI); in DumpLinkerOptionsCommand()
307 uint64_t DataSize = LOLC.cmdsize - sizeof(MachO::linker_option_command); in DumpLinkerOptionsCommand()
308 const char *P = LCI.Ptr + sizeof(MachO::linker_option_command); in DumpLinkerOptionsCommand()
/external/llvm/lib/MC/
DMachObjectWriter.cpp422 unsigned Size = sizeof(MachO::linker_option_command); in ComputeLinkerOptionsLoadCommandSize()
438 uint64_t BytesWritten = sizeof(MachO::linker_option_command); in WriteLinkerOptionsLoadCommand()
/external/llvm/include/llvm/Object/
DMachO.h349 MachO::linker_option_command
/external/llvm/include/llvm/Support/
DMachO.h877 struct linker_option_command { struct
1264 inline void swapStruct(linker_option_command &C) { in swapStruct()
/external/llvm/lib/Object/
DMachOObjectFile.cpp2313 MachO::linker_option_command
2315 return getStruct<MachO::linker_option_command>(this, L.Ptr); in getLinkerOptionLoadCommand()
/external/llvm/tools/llvm-objdump/
DMachODump.cpp7807 static void PrintLinkerOptionCommand(MachO::linker_option_command lo, in PrintLinkerOptionCommand()
7811 if (lo.cmdsize < sizeof(struct MachO::linker_option_command)) in PrintLinkerOptionCommand()
7816 const char *string = Ptr + sizeof(struct MachO::linker_option_command); in PrintLinkerOptionCommand()
7817 uint32_t left = lo.cmdsize - sizeof(struct MachO::linker_option_command); in PrintLinkerOptionCommand()
8441 MachO::linker_option_command Lo = in PrintLoadCommands()