Searched refs:sizeofcmds (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/build/mac/
H A Dchange_mach_o_flags.py146 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/
H A DSymbols.cpp78 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));
/external/lldb/source/Plugins/Process/mach-core/
H A DProcessMachCore.cpp157 header.sizeofcmds = llvm::ByteSwap_32(header.sizeofcmds);
/external/valgrind/main/coregrind/m_ume/
H A Dmacho.c529 len = sizeof(mh) + mh.sizeofcmds;
548 lcend = (struct load_command *)(headers + mh.sizeofcmds + sizeof(mh));
/external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOSXDYLD.cpp1184 DataBufferSP load_cmd_data_sp(new DataBufferHeap(header->sizeofcmds, 0));
1191 if (load_cmd_bytes_read == header->sizeofcmds)
1195 load_command_data->SetData(load_cmd_data_sp, 0, header->sizeofcmds);
/external/valgrind/main/coregrind/
H A Dfixup_macho_loadcmds.c328 if (ii->macho_img_szB < sizeof(struct mach_header_64) + mh->sizeofcmds)
/external/llvm/include/llvm/Support/
H A DMachO.h536 uint32_t sizeofcmds; member in struct:llvm::MachO::mach_header
546 uint32_t sizeofcmds; member in struct:llvm::MachO::mach_header_64
/external/llvm/tools/macho-dump/
H A Dmacho-dump.cpp389 outs() << "('load_commands_size', " << Header.sizeofcmds << ")\n";
/external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
H A DDynamicLoaderDarwinKernel.cpp418 header.sizeofcmds = llvm::ByteSwap_32(header.sizeofcmds);
/external/chromium_org/v8/src/
H A Dgdb-jit.cc500 uint32_t sizeofcmds; member in struct:v8::BASE_EMBEDDED::MachOHeader
551 header->sizeofcmds = 0;
589 header->sizeofcmds = w->position() - load_command_start;
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadmacho.c267 if (sli.szB < sizeof(struct MACH_HEADER) + mh.sizeofcmds) {
/external/llvm/lib/Object/
H A DMachOObjectFile.cpp115 sys::swapByteOrder(H.sizeofcmds);
126 sys::swapByteOrder(H.sizeofcmds);
/external/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp513 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);

Completed in 442 milliseconds