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

  /external/webrtc/webrtc/base/
linux.cc 42 return procfs.Parse(&sections_);
46 if (sections_.empty()) {
50 *count = sections_.size();
56 if (sections_.empty()) {
63 size_t section_count = sections_.size();
77 total_cpus = static_cast<int>(sections_.size());
86 if (sections_.empty()) {
98 size_t section_count = sections_.size();
128 size_t section_count = sections_.size();
147 if (section_num >= sections_.size())
    [all...]
linux.h 104 ConfigParser::MapVector sections_; member in class:rtc::ProcCpuInfo
  /external/google-breakpad/src/common/linux/
synth_elf.cc 116 sections_.push_back(ElfSection(section, type, addr, offset, offset_label,
137 assert(size_t(start) < sections_.size());
139 assert(size_t(end) < sections_.size());
154 size_t size = sections_[i].size_;
155 if (sections_[i].type_ != SHT_NOBITS) {
168 .Append(endianness(), addr_size_, sections_[start].offset_label_)
170 .Append(endianness(), addr_size_, sections_[start].addr_)
172 .Append(endianness(), addr_size_, sections_[start].addr_)
192 //printf("section_count_: %ld, sections_.size(): %ld\n",
193 // section_count_, sections_.size())
    [all...]
synth_elf.h 155 vector<ElfSection> sections_; member in class:google_breakpad::synth_elf::ELF
  /external/google-breakpad/src/common/dwarf/
functioninfo.h 123 linehandler_(linehandler), sections_(sections),
181 const SectionMap& sections_; member in class:dwarf2reader::CUFunctionInfoHandler
functioninfo.cc 166 SectionMap::const_iterator iter = sections_.find("__debug_line");
167 assert(iter != sections_.end());
dwarf2reader.cc 57 sections_(sections), handler_(handler), abbrevs_(NULL),
75 SectionMap::const_iterator iter = sections_.find(".debug_abbrev");
76 if (iter == sections_.end())
77 iter = sections_.find("__debug_abbrev");
78 assert(iter != sections_.end());
256 SectionMap::const_iterator iter = sections_.find(".debug_info");
257 if (iter == sections_.end())
258 iter = sections_.find("__debug_info");
259 assert(iter != sections_.end());
291 iter = sections_.find(".debug_str")
    [all...]
dwarf2reader.h 308 const SectionMap& sections_; member in class:dwarf2reader::CompilationUnit
    [all...]
  /external/v8/src/
gdb-jit.cc 476 explicit MachO(Zone* zone) : zone_(zone), sections_(6, zone) { }
479 sections_.Add(section, zone_);
480 return sections_.length() - 1;
573 cmd->nsects = sections_.length();
586 w->CreateSlotsHere<MachOSection::Header>(sections_.length());
590 for (int section = 0; section < sections_.length(); ++section) {
591 sections_[section]->PopulateHeader(headers.at(section));
592 sections_[section]->WriteBody(headers.at(section), w);
598 ZoneList<MachOSection*> sections_; member in class:v8::internal::BASE_EMBEDDED
606 explicit ELF(Zone* zone) : zone_(zone), sections_(6, zone)
745 ZoneList<ELFSection*> sections_; member in class:v8::internal::BASE_EMBEDDED
    [all...]
  /art/compiler/
elf_builder.h 127 auto& sections = owner_->sections_;
618 for (auto* section : sections_) {
628 shdrs.reserve(1u + sections_.size());
630 for (auto* section : sections_) {
1000 std::vector<Section*> sections_; member in class:art::FINAL
    [all...]
  /art/runtime/
image.cc 77 std::copy_n(sections, kSectionCount, sections_);
145 return sections_[index];
image.h 369 ImageSection sections_[kSectionCount]; variable
  /toolchain/binutils/binutils-2.25/gold/
dwp.cc 452 abiversion_(0), fd_(NULL), next_file_offset_(0), shnum_(1), sections_(),
659 std::vector<Section> sections_; member in class:gold::Dwp_output_file
722 output_file_(NULL), sections_(NULL)
744 Section_bounds* sections_; member in class:gold::Unit_reader
    [all...]
incremental.h 356 is_member_(false), sections_(), groups_()
357 { this->sections_.reserve(obj->shnum()); }
377 { this->sections_.push_back(Input_section(shndx, name_key, sh_size)); }
382 { return this->sections_.size(); }
387 { return this->sections_[n].shndx_; }
392 { return this->sections_[n].name_key_; }
397 { return this->sections_[n].sh_size_; }
445 std::vector<Input_section> sections_; member in class:gold::Incremental_object_entry
    [all...]

Completed in 807 milliseconds