Home
last modified time | relevance | path

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

/external/google-breakpad/src/common/linux/
Dsynth_elf.cc116 sections_.push_back(ElfSection(section, type, addr, offset, offset_label, in AddSection()
137 assert(size_t(start) < sections_.size()); in AddSegment()
139 assert(size_t(end) < sections_.size()); in AddSegment()
154 size_t size = sections_[i].size_; in AddSegment()
155 if (sections_[i].type_ != SHT_NOBITS) { in AddSegment()
168 .Append(endianness(), addr_size_, sections_[start].offset_label_) in AddSegment()
170 .Append(endianness(), addr_size_, sections_[start].addr_) in AddSegment()
172 .Append(endianness(), addr_size_, sections_[start].addr_) in AddSegment()
201 for (vector<ElfSection>::iterator it = sections_.begin(); in Finish()
202 it < sections_.end(); ++it) { in Finish()
Dsynth_elf.h155 vector<ElfSection> sections_; variable
/external/v8/src/
Dgdb-jit.cc477 explicit MachO(Zone* zone) : zone_(zone), sections_(6, zone) { } in MachO()
480 sections_.Add(section, zone_); in AddSection()
481 return sections_.length() - 1; in AddSection()
574 cmd->nsects = sections_.length(); in WriteSegmentCommand()
587 w->CreateSlotsHere<MachOSection::Header>(sections_.length()); in WriteSections()
590 for (int section = 0; section < sections_.length(); ++section) { in WriteSections()
591 sections_[section]->PopulateHeader(headers.at(section)); in WriteSections()
592 sections_[section]->WriteBody(headers.at(section), w); in WriteSections()
598 ZoneList<MachOSection*> sections_; member in v8::internal::BASE_EMBEDDED
606 explicit ELF(Zone* zone) : zone_(zone), sections_(6, zone) { in ELF()
[all …]
/external/google-breakpad/src/common/dwarf/
Dfunctioninfo.h123 linehandler_(linehandler), sections_(sections), in CUFunctionInfoHandler()
181 const SectionMap& sections_; variable
Dfunctioninfo.cc166 SectionMap::const_iterator iter = sections_.find("__debug_line"); in ProcessAttributeUnsigned()
167 assert(iter != sections_.end()); in ProcessAttributeUnsigned()
Ddwarf2reader.cc57 sections_(sections), handler_(handler), abbrevs_(NULL), in CompilationUnit()
75 SectionMap::const_iterator iter = sections_.find(".debug_abbrev"); in ReadAbbrevs()
76 if (iter == sections_.end()) in ReadAbbrevs()
77 iter = sections_.find("__debug_abbrev"); in ReadAbbrevs()
78 assert(iter != sections_.end()); in ReadAbbrevs()
256 SectionMap::const_iterator iter = sections_.find(".debug_info"); in Start()
257 if (iter == sections_.end()) in Start()
258 iter = sections_.find("__debug_info"); in Start()
259 assert(iter != sections_.end()); in Start()
291 iter = sections_.find(".debug_str"); in Start()
[all …]
Ddwarf2reader.h308 const SectionMap& sections_; variable