Lines Matching refs:dex_file
234 const DexFile* dex_file = dex_cache->GetDexFile(); in PreloadDexCachesResolveString() local
235 const char* utf8 = dex_file->StringDataByIdx(string_idx); in PreloadDexCachesResolveString()
251 const DexFile* dex_file = dex_cache->GetDexFile(); in PreloadDexCachesResolveType() local
252 const char* class_name = dex_file->StringByTypeIdx(type_idx); in PreloadDexCachesResolveType()
280 const DexFile* dex_file = dex_cache->GetDexFile(); in PreloadDexCachesResolveField() local
281 const DexFile::FieldId& field_id = dex_file->GetFieldId(field_idx); in PreloadDexCachesResolveField()
308 const DexFile* dex_file = dex_cache->GetDexFile(); in PreloadDexCachesResolveMethod() local
309 const DexFile::MethodId& method_id = dex_file->GetMethodId(method_idx); in PreloadDexCachesResolveMethod()
366 const DexFile* dex_file = boot_class_path[i]; in PreloadDexCachesStatsTotal() local
367 CHECK(dex_file != NULL); in PreloadDexCachesStatsTotal()
368 total->num_strings += dex_file->NumStringIds(); in PreloadDexCachesStatsTotal()
369 total->num_fields += dex_file->NumFieldIds(); in PreloadDexCachesStatsTotal()
370 total->num_methods += dex_file->NumMethodIds(); in PreloadDexCachesStatsTotal()
371 total->num_types += dex_file->NumTypeIds(); in PreloadDexCachesStatsTotal()
383 const DexFile* dex_file = boot_class_path[i]; in PreloadDexCachesStatsFilled() local
384 CHECK(dex_file != NULL); in PreloadDexCachesStatsFilled()
385 mirror::DexCache* dex_cache = linker->FindDexCache(*dex_file); in PreloadDexCachesStatsFilled()
445 const DexFile* dex_file = boot_class_path[i]; in VMRuntime_preloadDexCaches() local
446 CHECK(dex_file != NULL); in VMRuntime_preloadDexCaches()
448 Handle<mirror::DexCache> dex_cache(hs.NewHandle(linker->FindDexCache(*dex_file))); in VMRuntime_preloadDexCaches()
464 class_def_index < dex_file->NumClassDefs(); in VMRuntime_preloadDexCaches()
466 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index); in VMRuntime_preloadDexCaches()
467 const byte* class_data = dex_file->GetClassData(class_def); in VMRuntime_preloadDexCaches()
471 ClassDataItemIterator it(*dex_file, class_data); in VMRuntime_preloadDexCaches()