Lines Matching refs:GetOatHeader

290          (GetOatHeader().IsValid() && !IsDebuggable());  in ShouldUnquickenVDex()
573 if (!GetOatHeader().IsValid()) { in Setup()
574 std::string cause = GetOatHeader().GetValidationErrorMessage(); in Setup()
580 PointerSize pointer_size = GetInstructionSetPointerSize(GetOatHeader().GetInstructionSet()); in Setup()
582 (Size() >= sizeof(OatHeader)) ? GetOatHeader().GetKeyValueStoreSize() : 0u; in Setup()
593 size_t oat_dex_files_offset = GetOatHeader().GetOatDexFilesOffset(); in Setup()
594 if (oat_dex_files_offset < GetOatHeader().GetHeaderSize() || oat_dex_files_offset > Size()) { in Setup()
599 GetOatHeader().GetHeaderSize(), in Setup()
656 uint32_t dex_file_count = GetOatHeader().GetDexFileCount(); in Setup()
1027 if (GetOatHeader().GetKeyValueStoreSize() != 0u) { in Setup()
1029 GetOatHeader().GetStoreValueByKey(OatHeader::kBootClassPathChecksumsKey); in Setup()
1957 const OatHeader& OatFile::GetOatHeader() const { in GetOatHeader() function in art::OatFile
2381 return GetOatHeader().IsDebuggable(); in IsDebuggable()
2385 return GetOatHeader().GetCompilerFilter(); in GetCompilerFilter()
2389 return GetOatHeader().GetStoreValueByKey(OatHeader::kClassPathKey); in GetClassLoaderContext()
2393 return GetOatHeader().GetStoreValueByKey(OatHeader::kCompilationReasonKey); in GetCompilationReason()
2409 bool OatFile::RequiresImage() const { return GetOatHeader().RequiresImage(); } in RequiresImage()
2459 PointerSize pointer_size = GetInstructionSetPointerSize(GetOatHeader().GetInstructionSet()); in InitializeRelocations()