Lines Matching refs:h_dex_cache
4289 Handle<mirror::DexCache> h_dex_cache(hs.NewHandle(dex_cache)); in RegisterExistingDexCache() local
4310 RegisterDexFileLocked(*dex_file, h_dex_cache.Get(), h_class_loader.Get()); in RegisterExistingDexCache()
4311 table->InsertStrongRoot(h_dex_cache.Get()); in RegisterExistingDexCache()
4389 Handle<mirror::DexCache> h_dex_cache(hs.NewHandle(AllocDexCache(self, dex_file))); in RegisterDexFile() local
4398 if (old_dex_cache == nullptr && h_dex_cache != nullptr) { in RegisterDexFile()
4402 h_dex_cache->Initialize(&dex_file, h_class_loader.Get()); in RegisterDexFile()
4403 RegisterDexFileLocked(dex_file, h_dex_cache.Get(), h_class_loader.Get()); in RegisterDexFile()
4408 DCHECK_EQ(h_dex_cache == nullptr, self->IsExceptionPending()); in RegisterDexFile()
4423 if (h_dex_cache == nullptr) { in RegisterDexFile()
4427 if (table->InsertStrongRoot(h_dex_cache.Get())) { in RegisterDexFile()
4428 WriteBarrierOnClassLoader(self, h_class_loader.Get(), h_dex_cache.Get()); in RegisterDexFile()
4434 return h_dex_cache.Get(); in RegisterDexFile()
9905 Handle<mirror::DexCache> h_dex_cache(hs.NewHandle(dex_cache)); in DoResolveString() local
9906 return DoResolveString(string_idx, h_dex_cache); in DoResolveString()