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

  /external/bcc/src/cc/
bcc_debug.h 26 sections_(sections),
55 const std::map<std::string, std::tuple<uint8_t *, uintptr_t>> &sections_; member in class:ebpf::SourceDebugger
bpf_module.h 135 std::map<std::string, std::tuple<uint8_t *, uintptr_t>> sections_; member in class:ebpf::BPFModule
bpf_module.cc 77 : sections_(sections) {
87 (*sections_)[SectionName.str()] = make_tuple(Addr, Size);
96 (*sections_)[SectionName.str()] = make_tuple(Addr, Size);
99 map<string, tuple<uint8_t *, uintptr_t>> *sections_; member in class:ebpf::MyMemoryManager
146 for (auto section : sections_)
621 sections_p = rw_engine_enabled_ ? &sections_ : &tmp_sections;
650 // Setup sections_ correctly and then free llvm internal memory
661 sections_[fname] = make_tuple(tmp_p, size);
668 for (auto section : sections_)
688 auto section = sections_.find(function_names_[id])
    [all...]
  /external/webrtc/webrtc/base/
linux.h 104 ConfigParser::MapVector sections_; member in class:rtc::ProcCpuInfo
  /art/libdexfile/dex/
dex_file_layout.h 118 DexLayoutSection sections_[static_cast<size_t>(SectionType::kSectionCount)]; member in class:art::DexLayoutSections
  /external/google-breakpad/src/common/dwarf/
functioninfo.h 123 linehandler_(linehandler), sections_(sections),
181 const SectionMap& sections_; member in class:dwarf2reader::CUFunctionInfoHandler
dwarf2reader.h 308 const SectionMap& sections_; member in class:dwarf2reader::CompilationUnit
    [all...]
  /external/google-breakpad/src/common/linux/
synth_elf.h 155 vector<ElfSection> sections_; member in class:google_breakpad::synth_elf::ELF
  /art/libelffile/elf/
elf_debug_reader.h 72 sections_ = Read<Elf_Shdr>(header_->e_shoff, header_->e_shnum);
73 for (const Elf_Shdr& section : sections_) {
74 const char* name = Read<char>(sections_[header_->e_shstrndx].sh_offset + section.sh_name);
93 ArrayRef<Elf_Shdr> GetSections() { return sections_; }
106 if (ELF_ST_TYPE(symbol.st_info) == STT_FUNC && &sections_[symbol.st_shndx] == text) {
165 ArrayRef<const Elf_Shdr> sections_; member in class:art::ElfDebugReader
elf_builder.h 202 std::vector<Section*>& sections = owner_->sections_;
539 for (auto* section : sections_) {
552 shdrs.reserve(1u + sections_.size());
554 for (auto* section : sections_) {
598 for (Section* section : sections_) {
616 sections_ = std::move(non_debug_sections);
857 CHECK(!sections_.empty());
958 std::vector<Section*> sections_; member in class:art::final
    [all...]
  /art/runtime/
image.h 273 return sections_[index];
278 return sections_[index];
475 ImageSection sections_[kSectionCount]; variable
  /external/adhd/cras/src/tests/
alsa_mixer_unittest.cc 1478 struct ucm_section *sections_; member in class:__anon15168::AlsaMixerFullySpeced
    [all...]
  /external/v8/src/
gdb-jit.cc 477 explicit MachO(Zone* zone) : sections_(zone) {}
480 sections_.push_back(section);
481 return sections_.size() - 1;
574 cmd->nsects = static_cast<uint32_t>(sections_.size());
588 static_cast<uint32_t>(sections_.size()));
593 for (MachOSection* section : sections_) {
601 ZoneChunkList<MachOSection*> sections_; member in class:v8::internal::BASE_EMBEDDED
609 explicit ELF(Zone* zone) : sections_(zone) {
610 sections_.push_back(new (zone) ELFSection("", ELFSection::TYPE_NULL, 0));
611 sections_.push_back(new (zone) ELFStringTable(".shstrtab"))
746 ZoneChunkList<ELFSection*> sections_; member in class:v8::internal::BASE_EMBEDDED
    [all...]

Completed in 825 milliseconds