Searched refs:sections_ (Results 1 – 9 of 9) sorted by relevance
/external/webrtc/webrtc/base/ |
D | linux.cc | 42 return procfs.Parse(§ions_); in LoadFromSystem() 46 if (sections_.empty()) { in GetSectionCount() 50 *count = sections_.size(); in GetSectionCount() 56 if (sections_.empty()) { in GetNumCpus() 63 size_t section_count = sections_.size(); in GetNumCpus() 77 total_cpus = static_cast<int>(sections_.size()); in GetNumCpus() 86 if (sections_.empty()) { in GetNumPhysicalCpus() 98 size_t section_count = sections_.size(); in GetNumPhysicalCpus() 128 size_t section_count = sections_.size(); in GetCpuFamily() 147 if (section_num >= sections_.size()) { in GetSectionStringValue() [all …]
|
D | linux.h | 104 ConfigParser::MapVector sections_;
|
/external/google-breakpad/src/common/linux/ |
D | synth_elf.cc | 116 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()
|
D | synth_elf.h | 155 vector<ElfSection> sections_; variable
|
/external/v8/src/ |
D | gdb-jit.cc | 476 explicit MachO(Zone* zone) : zone_(zone), sections_(6, zone) { } in MachO() 479 sections_.Add(section, zone_); in AddSection() 480 return sections_.length() - 1; in AddSection() 573 cmd->nsects = sections_.length(); in WriteSegmentCommand() 586 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::GDBJITInterface::BASE_EMBEDDED 606 explicit ELF(Zone* zone) : zone_(zone), sections_(6, zone) { in ELF() [all …]
|
/external/google-breakpad/src/common/dwarf/ |
D | functioninfo.h | 123 linehandler_(linehandler), sections_(sections), in CUFunctionInfoHandler() 181 const SectionMap& sections_; variable
|
D | functioninfo.cc | 166 SectionMap::const_iterator iter = sections_.find("__debug_line"); in ProcessAttributeUnsigned() 167 assert(iter != sections_.end()); in ProcessAttributeUnsigned()
|
D | dwarf2reader.cc | 57 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 …]
|
D | dwarf2reader.h | 308 const SectionMap& sections_; variable
|