Lines Matching refs:oat

407                                       /*inout*/const uint8_t** oat,  in ReadOatDexFileData()  argument
409 DCHECK(oat != nullptr); in ReadOatDexFileData()
411 DCHECK_LE(*oat, oat_file.End()); in ReadOatDexFileData()
412 if (UNLIKELY(static_cast<size_t>(oat_file.End() - *oat) < sizeof(T))) { in ReadOatDexFileData()
417 *value = *reinterpret_cast<const unaligned_type*>(*oat); in ReadOatDexFileData()
418 *oat += sizeof(T); in ReadOatDexFileData()
423 /*inout*/const uint8_t** oat, in ReadIndexBssMapping() argument
430 if (UNLIKELY(!ReadOatDexFileData(*oat_file, oat, &index_bss_mapping_offset))) { in ReadIndexBssMapping()
522 const uint8_t* oat = Begin() + oat_dex_files_offset; // Jump to the OatDexFile records. in Setup() local
579 if (UNLIKELY(!ReadOatDexFileData(*this, &oat, &dex_file_location_size))) { in Setup()
592 if (UNLIKELY(static_cast<size_t>(End() - oat) < dex_file_location_size)) { in Setup()
599 const char* dex_file_location_data = reinterpret_cast<const char*>(oat); in Setup()
600 oat += dex_file_location_size; in Setup()
659 if (UNLIKELY(!ReadOatDexFileData(*this, &oat, &dex_file_checksum))) { in Setup()
669 if (UNLIKELY(!ReadOatDexFileData(*this, &oat, &dex_file_offset))) { in Setup()
812 if (UNLIKELY(!ReadOatDexFileData(*this, &oat, &class_offsets_offset))) { in Setup()
845 if (UNLIKELY(!ReadOatDexFileData(*this, &oat, &lookup_table_offset))) { in Setup()
872 if (UNLIKELY(!ReadOatDexFileData(*this, &oat, &dex_layout_sections_offset))) { in Setup()
888 this, &oat, i, dex_file_location, "method", &method_bss_mapping, error_msg) || in Setup()
890 this, &oat, i, dex_file_location, "type", &type_bss_mapping, error_msg) || in Setup()
892 this, &oat, i, dex_file_location, "string", &string_bss_mapping, error_msg)) { in Setup()
1323 VLOG(oat) << "Need a second run in PreSetup, didn't find with shared_objects_before=" in PreSetup()