Lines Matching refs:oat

418                                       /*inout*/const uint8_t** oat,  in ReadOatDexFileData()  argument
420 DCHECK(oat != nullptr); in ReadOatDexFileData()
422 DCHECK_LE(*oat, oat_file.End()); in ReadOatDexFileData()
423 if (UNLIKELY(static_cast<size_t>(oat_file.End() - *oat) < sizeof(T))) { in ReadOatDexFileData()
428 *value = *reinterpret_cast<const unaligned_type*>(*oat); in ReadOatDexFileData()
429 *oat += sizeof(T); in ReadOatDexFileData()
434 /*inout*/const uint8_t** oat, in ReadIndexBssMapping() argument
441 if (UNLIKELY(!ReadOatDexFileData(*oat_file, oat, &index_bss_mapping_offset))) { in ReadIndexBssMapping()
603 const uint8_t* oat = Begin() + oat_dex_files_offset; // Jump to the OatDexFile records. in Setup() local
660 if (UNLIKELY(!ReadOatDexFileData(*this, &oat, &dex_file_location_size))) { in Setup()
673 if (UNLIKELY(static_cast<size_t>(End() - oat) < dex_file_location_size)) { in Setup()
680 const char* dex_file_location_data = reinterpret_cast<const char*>(oat); in Setup()
681 oat += dex_file_location_size; in Setup()
740 if (UNLIKELY(!ReadOatDexFileData(*this, &oat, &dex_file_checksum))) { in Setup()
750 if (UNLIKELY(!ReadOatDexFileData(*this, &oat, &dex_file_offset))) { in Setup()
891 if (UNLIKELY(!ReadOatDexFileData(*this, &oat, &class_offsets_offset))) { in Setup()
924 if (UNLIKELY(!ReadOatDexFileData(*this, &oat, &lookup_table_offset))) { in Setup()
951 if (UNLIKELY(!ReadOatDexFileData(*this, &oat, &dex_layout_sections_offset))) { in Setup()
969 this, &oat, i, dex_file_location, "method", &method_bss_mapping, error_msg) || in Setup()
971 this, &oat, i, dex_file_location, "type", &type_bss_mapping, error_msg) || in Setup()
973 this, &oat, i, dex_file_location, "type", &public_type_bss_mapping, error_msg) || in Setup()
975 this, &oat, i, dex_file_location, "type", &package_type_bss_mapping, error_msg) || in Setup()
977 this, &oat, i, dex_file_location, "string", &string_bss_mapping, error_msg)) { in Setup()
1443 VLOG(oat) << "Need a second run in PreSetup, didn't find with shared_objects_before=" in PreSetup()