Lines Matching refs:oat
219 if (kIsTargetBuild && (kIsDebugBuild || VLOG_IS_ON(oat))) { in ComputeFields()
261 /*inout*/const uint8_t** oat, in ReadOatDexFileData() argument
263 DCHECK(oat != nullptr); in ReadOatDexFileData()
265 DCHECK_LE(*oat, oat_file.End()); in ReadOatDexFileData()
266 if (UNLIKELY(static_cast<size_t>(oat_file.End() - *oat) < sizeof(T))) { in ReadOatDexFileData()
271 *value = *reinterpret_cast<const unaligned_type*>(*oat); in ReadOatDexFileData()
272 *oat += sizeof(T); in ReadOatDexFileData()
314 const uint8_t* oat = Begin(); in Setup() local
315 oat += sizeof(OatHeader); in Setup()
316 if (oat > End()) { in Setup()
321 oat += GetOatHeader().GetKeyValueStoreSize(); in Setup()
322 if (oat > End()) { in Setup()
364 if (UNLIKELY(!ReadOatDexFileData(*this, &oat, &dex_file_location_size))) { in Setup()
377 if (UNLIKELY(static_cast<size_t>(End() - oat) < dex_file_location_size)) { in Setup()
384 const char* dex_file_location_data = reinterpret_cast<const char*>(oat); in Setup()
385 oat += dex_file_location_size; in Setup()
392 if (UNLIKELY(!ReadOatDexFileData(*this, &oat, &dex_file_checksum))) { in Setup()
402 if (UNLIKELY(!ReadOatDexFileData(*this, &oat, &dex_file_offset))) { in Setup()
473 if (UNLIKELY(!ReadOatDexFileData(*this, &oat, &class_offsets_offset))) { in Setup()
506 if (UNLIKELY(!ReadOatDexFileData(*this, &oat, &lookup_table_offset))) { in Setup()
846 VLOG(oat) << "Need a second run in PreSetup, didn't find with shared_objects_before=" in PreSetup()