Lines Matching refs:GetOatHeader
627 if (!GetOatHeader().IsValid()) { in Setup()
628 std::string cause = GetOatHeader().GetValidationErrorMessage(); in Setup()
632 PointerSize pointer_size = GetInstructionSetPointerSize(GetOatHeader().GetInstructionSet()); in Setup()
634 (Size() >= sizeof(OatHeader)) ? GetOatHeader().GetKeyValueStoreSize() : 0u; in Setup()
643 size_t oat_dex_files_offset = GetOatHeader().GetOatDexFilesOffset(); in Setup()
644 if (oat_dex_files_offset < GetOatHeader().GetHeaderSize() || oat_dex_files_offset > Size()) { in Setup()
647 GetOatHeader().GetHeaderSize(), in Setup()
709 uint32_t dex_file_count = GetOatHeader().GetDexFileCount(); in Setup()
1044 size_t bcp_info_offset = GetOatHeader().GetBcpBssInfoOffset(); in Setup()
1048 if (bcp_info_offset < GetOatHeader().GetHeaderSize() || bcp_info_offset > Size()) { in Setup()
1051 GetOatHeader().GetHeaderSize(), in Setup()
1103 if (GetOatHeader().GetKeyValueStoreSize() != 0u) { in Setup()
1105 GetOatHeader().GetStoreValueByKey(OatHeader::kBootClassPathChecksumsKey); in Setup()
2044 const OatHeader& OatFile::GetOatHeader() const { in GetOatHeader() function in art::OatFile
2447 return GetOatHeader().IsDebuggable(); in IsDebuggable()
2451 return GetOatHeader().GetCompilerFilter(); in GetCompilerFilter()
2455 const char* value = GetOatHeader().GetStoreValueByKey(OatHeader::kClassPathKey); in GetClassLoaderContext()
2460 return GetOatHeader().GetStoreValueByKey(OatHeader::kCompilationReasonKey); in GetCompilationReason()
2476 bool OatFile::RequiresImage() const { return GetOatHeader().RequiresImage(); } in RequiresImage()
2533 PointerSize pointer_size = GetInstructionSetPointerSize(GetOatHeader().GetInstructionSet()); in InitializeRelocations()