Home
last modified time | relevance | path

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

/aosp12/art/runtime/mirror/
H A Ddex_cache_test.cc147 class_linker_->FindDexCache(Thread::Current(), dex_file)); in TEST_F()
/aosp12/art/compiler/
H A Dcommon_compiler_test.cc245 hs.NewHandle(GetClassLinker()->FindDexCache(self, dex_file)); in CompileMethod()
/aosp12/art/dex2oat/driver/
H A Dcompiler_driver_test.cc126 ObjPtr<mirror::DexCache> dex_cache = class_linker_->FindDexCache(soa.Self(), dex); in TEST_F()
H A Dcompiler_driver.cc559 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file)); in ResolveConstStrings()
669 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file)); in InitializeTypeCheckBitstrings()
1536 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache( in Visit()
1897 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache( in Visit()
2596 dex_cache = hs.NewHandle(class_linker->FindDexCache(soa.Self(), dex_file)); in CompileDexFile()
/aosp12/art/compiler/optimizing/
H A Dsharpening.cc377 : hs.NewHandle(class_linker->FindDexCache(soa.Self(), dex_file)); in ProcessLoadString()
H A Dreference_type_propagation.cc40 return Runtime::Current()->GetClassLinker()->FindDexCache(self, dex_file); in FindDexCacheWithHint()
/aosp12/art/dex2oat/linker/
H A Doat_writer.cc1551 ObjPtr<mirror::DexCache> dex_cache = class_linker_->FindDexCache(Thread::Current(), *dex_file); in StartClass()
1601 ObjPtr<mirror::DexCache> dex_cache = class_linker_->FindDexCache(self, *dex_file_); in VisitMethod()
1705 dex_cache_ = class_linker_->FindDexCache(Thread::Current(), *dex_file); in UpdateDexFileAndDexCache()
1955 (dex_file_ == ref.dex_file) ? dex_cache_ : class_linker_->FindDexCache( in GetTargetMethod()
1987 : class_linker_->FindDexCache(Thread::Current(), *target_dex_file); in GetDexCache()
H A Dimage_writer.cc1900 ObjPtr<mirror::DexCache> dex_cache = class_linker->FindDexCache(self, *dex_file); in ProcessDexFileObjects()
/aosp12/art/runtime/jit/
H A Djit.cc1378 dex_caches.push_back(handles.NewHandle(class_linker->FindDexCache(self, *dex_file))); in CompileMethodsFromBootProfile()
1444 dex_cache.Assign(class_linker->FindDexCache(self, *dex_file)); in CompileMethodsFromProfile()
/aosp12/art/runtime/
H A Dclass_linker.h503 ObjPtr<mirror::DexCache> FindDexCache(Thread* self, const DexFile& dex_file)
H A Dclass_linker_test.cc1576 class_linker_->FindDexCache(soa.Self(), dex_file)); in TEST_F()
H A Dclass_linker.cc4116 ObjPtr<mirror::DexCache> ClassLinker::FindDexCache(Thread* self, const DexFile& dex_file) { in FindDexCache() function in art::ClassLinker