Home
last modified time | relevance | path

Searched refs:mach_o (Results 1 – 7 of 7) sorted by relevance

/external/google-breakpad/src/tools/mac/dump_syms/
Dmacho_dump.cc59 namespace mach_o = google_breakpad::mach_o;
73 class DumpSection: public mach_o::Reader::SectionHandler {
76 bool HandleSection(const mach_o::Section &section) { in HandleSection()
84 mach_o::SectionFlags(section.flags), in HandleSection()
93 class DumpCommand: public mach_o::Reader::LoadCommandHandler {
95 DumpCommand(mach_o::Reader *reader) : reader_(reader), index_(0) { } in DumpCommand()
96 bool UnknownCommand(mach_o::LoadCommandType type, in UnknownCommand()
101 bool SegmentCommand(const mach_o::Segment &segment) { in SegmentCommand()
111 segment.initprot, mach_o::SegmentFlags(segment.flags), in SegmentCommand()
118 mach_o::Reader *reader_;
[all …]
/external/google-breakpad/src/common/mac/
Ddump_syms.h137 const mach_o::Reader &macho_reader,
138 const mach_o::SectionMap &dwarf_sections,
147 const mach_o::Reader &macho_reader,
148 const mach_o::Section &section,
Ddump_syms.mm73 using google_breakpad::mach_o::FatReader;
74 using google_breakpad::mach_o::Section;
75 using google_breakpad::mach_o::Segment;
259 const mach_o::Reader &macho_reader,
260 const mach_o::SectionMap &dwarf_sections,
272 // Build a dwarf2reader::SectionMap from our mach_o::SectionMap.
273 for (mach_o::SectionMap::const_iterator it = dwarf_sections.begin();
320 const mach_o::Reader &macho_reader,
321 const mach_o::Section &section,
383 public mach_o::Reader::LoadCommandHandler {
[all …]
Dmacho_reader_unittest.cc43 namespace mach_o = google_breakpad::mach_o;
46 using mach_o::FatReader;
47 using mach_o::FileFlags;
48 using mach_o::FileType;
49 using mach_o::LoadCommandType;
50 using mach_o::Reader;
51 using mach_o::Section;
52 using mach_o::SectionMap;
53 using mach_o::Segment;
Dmacho_reader.h52 namespace mach_o {
Dmacho_reader.cc51 namespace mach_o { namespace
/external/v8/src/
Dgdb-jit.cc1946 MachO mach_o(&zone); in CreateELFObject() local
1947 Writer w(&mach_o); in CreateELFObject()
1949 mach_o.AddSection(new(&zone) MachOTextSection(kCodeAlignment, in CreateELFObject()
1953 CreateDWARFSections(desc, &zone, &mach_o); in CreateELFObject()
1955 mach_o.Write(&w, desc->CodeStart(), desc->CodeSize()); in CreateELFObject()