Home
last modified time | relevance | path

Searched refs:FindDexCache (Results 1 – 15 of 15) sorted by relevance

/art/runtime/mirror/
Ddex_cache_test.cc147 class_linker_->FindDexCache(Thread::Current(), dex_file)); in TEST_F()
/art/compiler/
Dcommon_compiler_test.cc197 Handle<mirror::DexCache> dex_cache = hs.NewHandle(class_linker_->FindDexCache(self, dex_file)); in CompileMethod()
/art/compiler/optimizing/
Dsharpening.cc329 : hs.NewHandle(class_linker->FindDexCache(soa.Self(), dex_file)); in ProcessLoadString()
Dreference_type_propagation.cc39 return Runtime::Current()->GetClassLinker()->FindDexCache(self, dex_file); in FindDexCacheWithHint()
Dinliner.cc761 caller_compilation_unit_.GetClassLinker()->FindDexCache(self, *dex_file); in ExtractClassesFromOfflineProfile()
/art/dex2oat/driver/
Dcompiler_driver_test.cc126 ObjPtr<mirror::DexCache> dex_cache = class_linker_->FindDexCache(soa.Self(), dex); in TEST_F()
Dcompiler_driver.cc683 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file)); in ResolveConstStrings()
802 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file)); in InitializeTypeCheckBitstrings()
1634 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache( in Visit()
1996 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache( in Visit()
2746 dex_cache = hs.NewHandle(class_linker->FindDexCache(soa.Self(), dex_file)); in CompileDexFile()
/art/dex2oat/dex/
Ddex_to_dex_compiler.cc532 hs.NewHandle(class_linker->FindDexCache(soa.Self(), dex_file))); in CompileMethod()
/art/dex2oat/linker/
Doat_writer.cc1543 ObjPtr<mirror::DexCache> dex_cache = class_linker_->FindDexCache(Thread::Current(), *dex_file); in StartClass()
1593 ObjPtr<mirror::DexCache> dex_cache = class_linker_->FindDexCache(self, *dex_file_); in VisitMethod()
1697 dex_cache_ = class_linker_->FindDexCache(Thread::Current(), *dex_file); in UpdateDexFileAndDexCache()
1916 (dex_file_ == ref.dex_file) ? dex_cache_ : class_linker_->FindDexCache( in GetTargetMethod()
1948 : class_linker_->FindDexCache(Thread::Current(), *target_dex_file); in GetDexCache()
Dimage_writer.cc2058 ObjPtr<mirror::DexCache> dex_cache = class_linker->FindDexCache(self, *dex_file); in ProcessDexFileObjects()
2318 Runtime::Current()->GetClassLinker()->FindDexCache(self, *dex_file); in CollectStringReferenceInfo()
/art/runtime/jit/
Djit.cc1390 dex_caches.push_back(handles.NewHandle(class_linker->FindDexCache(self, *dex_file))); in CompileMethodsFromBootProfile()
1456 dex_cache.Assign(class_linker->FindDexCache(self, *dex_file)); in CompileMethodsFromProfile()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc531 const ObjPtr<mirror::DexCache> dex_cache = class_linker->FindDexCache(self, *dex_file); in PreloadDexCachesStatsFilled()
/art/runtime/
Dclass_linker.h493 ObjPtr<mirror::DexCache> FindDexCache(Thread* self, const DexFile& dex_file)
Dclass_linker_test.cc1572 class_linker_->FindDexCache(soa.Self(), dex_file)); in TEST_F()
Dclass_linker.cc4276 ObjPtr<mirror::DexCache> ClassLinker::FindDexCache(Thread* self, const DexFile& dex_file) { in FindDexCache() function in art::ClassLinker