HomeSort by relevance Sort by last modified time
    Searched refs:sizeofcmds (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/build/mac/
change_mach_o_flags.py 146 magic, cputype, cpusubtype, filetype, ncmds, sizeofcmds, flags = \
148 return magic, cputype, cpusubtype, filetype, ncmds, sizeofcmds, flags
196 magic, cputype, cpusubtype, filetype, ncmds, sizeofcmds, flags = \
  /external/lldb/source/Host/macosx/
Symbols.cpp 78 const uint32_t sizeofcmds = data.GetU32(&data_offset); // the size of all the load commands local
102 if (data.GetByteSize() < sizeof(struct mach_header_64) + sizeofcmds)
104 DataBufferSP data_buffer_sp (file_spec.ReadFileContents (file_offset, sizeof(struct mach_header_64) + sizeofcmds));
110 if (data.GetByteSize() < sizeof(struct mach_header) + sizeofcmds)
112 DataBufferSP data_buffer_sp (file_spec.ReadFileContents (file_offset, sizeof(struct mach_header) + sizeofcmds));
    [all...]
  /external/lldb/source/Plugins/Process/mach-core/
ProcessMachCore.cpp 157 header.sizeofcmds = llvm::ByteSwap_32(header.sizeofcmds);
  /external/valgrind/main/coregrind/m_ume/
macho.c 529 len = sizeof(mh) + mh.sizeofcmds;
548 lcend = (struct load_command *)(headers + mh.sizeofcmds + sizeof(mh));
  /external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DynamicLoaderMacOSXDYLD.cpp     [all...]
  /external/valgrind/main/coregrind/
fixup_macho_loadcmds.c 328 if (ii->macho_img_szB < sizeof(struct mach_header_64) + mh->sizeofcmds)
  /external/llvm/include/llvm/Support/
MachO.h 536 uint32_t sizeofcmds; member in struct:llvm::MachO::mach_header
546 uint32_t sizeofcmds; member in struct:llvm::MachO::mach_header_64
    [all...]
  /external/llvm/tools/macho-dump/
macho-dump.cpp 389 outs() << "('load_commands_size', " << Header.sizeofcmds << ")\n";
  /external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DynamicLoaderDarwinKernel.cpp 418 header.sizeofcmds = llvm::ByteSwap_32(header.sizeofcmds);
    [all...]
  /external/chromium_org/v8/src/
gdb-jit.cc 500 uint32_t sizeofcmds; member in struct:v8::BASE_EMBEDDED::MachOHeader
551 header->sizeofcmds = 0;
589 header->sizeofcmds = w->position() - load_command_start;
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
readmacho.c 267 if (sli.szB < sizeof(struct MACH_HEADER) + mh.sizeofcmds) {
    [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 115 sys::swapByteOrder(H.sizeofcmds);
126 sys::swapByteOrder(H.sizeofcmds);
    [all...]
  /external/lldb/source/Plugins/ObjectFile/Mach-O/
ObjectFileMachO.cpp 513 if (header.sizeofcmds >= data_sp->GetByteSize())
515 data_sp = file.ReadFileContents(file_offset, header.sizeofcmds);
734 const size_t header_and_lc_size = m_header.sizeofcmds + MachHeaderSizeFromMagic(m_header.magic);
    [all...]

Completed in 578 milliseconds