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

  /art/compiler/
elf_writer.h 51 : compiler_driver_(&driver), elf_file_(elf_file) {
63 File* const elf_file_; member in class:art::ElfWriter
elf_writer_quick.cc 249 return builder->Write(elf_file_);
  /ndk/sources/host-tools/ndk-stack/elff/
dwarf_cu.cc 25 : elf_file_(elf),
84 elf_file_->pull_val(reinterpret_cast<const Elf_Half*>(prop));
96 elf_file_->pull_val(reinterpret_cast<const Elf_Word*>(prop));
129 elf_file_->pull_val(reinterpret_cast<const Elf_Half*>(prop));
138 elf_file_->pull_val(reinterpret_cast<const Elf_Word*>(prop));
148 elf_file_->pull_val(reinterpret_cast<const Elf_Xword*>(prop));
175 if (elf_file_->is_DWARF_64()) {
177 elf_file_->pull_val(reinterpret_cast<const Elf_Xword*>(prop));
178 attr_value->str = elf_file_->get_debug_str(str_offset);
182 elf_file_->pull_val(reinterpret_cast<const Elf_Word*>(prop))
    [all...]
dwarf_cu.h 147 return elf_file_;
299 ElfFile* elf_file_; member in class:DwarfCU
  /art/runtime/
oat_file.h 88 CHECK_NE(reinterpret_cast<uintptr_t>(elf_file_.get()), reinterpret_cast<uintptr_t>(nullptr))
90 return elf_file_.get();
319 std::unique_ptr<ElfFile> elf_file_; member in class:art::FINAL
oat_file.cc 92 oat_file->elf_file_.reset(elf_file);
330 elf_file_.reset(ElfFile::Open(file, writable, /*program_header_only*/true, error_msg,
332 if (elf_file_ == nullptr) {
336 bool loaded = elf_file_->Load(executable, error_msg);
341 begin_ = elf_file_->FindDynamicSymbolAddress("oatdata");
353 end_ = elf_file_->FindDynamicSymbolAddress("oatlastword");
361 bss_begin_ = elf_file_->FindDynamicSymbolAddress("oatbss");
367 bss_end_ = elf_file_->FindDynamicSymbolAddress("oatbsslastword");
    [all...]

Completed in 760 milliseconds