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

  /art/patchoat/
patchoat.h 167 static const OatHeader* GetOatHeader(const ElfFile* elf_file);
171 static const OatHeader* GetOatHeader(const ElfFileImpl* elf_file);
patchoat.cc 366 const OatHeader* oat_header = GetOatHeader(oat_in);
566 const OatHeader* PatchOat::GetOatHeader(const ElfFile* elf_file) {
568 return GetOatHeader<ElfFileImpl64>(elf_file->GetImpl64());
570 return GetOatHeader<ElfFileImpl32>(elf_file->GetImpl32());
575 const OatHeader* PatchOat::GetOatHeader(const ElfFileImpl* elf_file) {
    [all...]
  /art/runtime/
oat_file.cc 381 if (!GetOatHeader().IsValid()) {
382 std::string cause = GetOatHeader().GetValidationErrorMessage();
394 oat += GetOatHeader().GetKeyValueStoreSize();
398 Begin(), sizeof(OatHeader), GetOatHeader().GetKeyValueStoreSize(),
403 uint32_t dex_file_count = GetOatHeader().GetDexFileCount();
506 const OatHeader& OatFile::GetOatHeader() const {
756 return GetOatHeader().IsPic();
761 return GetOatHeader().IsDebuggable();
    [all...]
oat_file.h 97 const OatHeader& GetOatHeader() const;
oat_file_assistant.cc 445 if (file.GetOatHeader().GetImageFileLocationOatChecksum() != image_info->oat_checksum) {
475 const OatHeader& oat_header = file.GetOatHeader();
    [all...]
class_linker.cc     [all...]
oat_file_assistant_test.cc 720 const OatHeader& oat_header = oat_file->GetOatHeader();
    [all...]
  /art/compiler/
image_writer.cc 154 oat_file_->GetOatHeader().GetInterpreterToInterpreterBridgeOffset();
156 oat_file_->GetOatHeader().GetInterpreterToCompiledCodeBridgeOffset();
158 jni_dlsym_lookup_offset_ = oat_file_->GetOatHeader().GetJniDlsymLookupOffset();
161 oat_file_->GetOatHeader().GetQuickGenericJniTrampolineOffset();
163 oat_file_->GetOatHeader().GetQuickImtConflictTrampolineOffset();
165 oat_file_->GetOatHeader().GetQuickResolutionTrampolineOffset();
167 oat_file_->GetOatHeader().GetQuickToInterpreterBridgeOffset();
    [all...]
oat_test.cc 128 const OatHeader& oat_header = oat_file->GetOatHeader();
oat_writer.h 93 const OatHeader& GetOatHeader() const {
elf_writer_quick.cc 149 const size_t rodata_size = oat_writer->GetOatHeader().GetExecutableOffset();
  /art/oatdump/
oatdump.cc 88 const size_t rodata_size = oat_file_->GetOatHeader().GetExecutableOffset();
101 const size_t rodata_size = oat_file_->GetOatHeader().GetExecutableOffset();
124 Elf32_Word rodata_size = oat_file_->GetOatHeader().GetExecutableOffset();
131 oat_file_->GetOatHeader().GetInstructionSet(),
283 oat_method.GetCodeOffset() - oat_file_->GetOatHeader().GetExecutableOffset(),
351 instruction_set_(oat_file_.GetOatHeader().GetInstructionSet()),
372 const OatHeader& oat_header = oat_file_.GetOatHeader();
496 return oat_file_.GetOatHeader().GetInstructionSet();
574 if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) {
    [all...]
  /art/runtime/gc/space/
image_space.cc 766 runtime->SetInstructionSet(space->oat_file_->GetOatHeader().GetInstructionSet());
    [all...]

Completed in 324 milliseconds