Home
last modified time | relevance | path

Searched refs:profile_cache_ (Results 1 – 2 of 2) sorted by relevance

/art/runtime/jit/
Dprofile_saver.cc109 for (auto& it : profile_cache_) { in ~ProfileSaver()
444 auto info_it = profile_cache_.find(filename); in FetchAndCacheResolvedClassesAndMethods()
445 if (info_it == profile_cache_.end()) { in FetchAndCacheResolvedClassesAndMethods()
446 info_it = profile_cache_.Put( in FetchAndCacheResolvedClassesAndMethods()
589 auto profile_cache_it = profile_cache_.find(filename); in ProcessProfilingInfo()
590 if (profile_cache_it != profile_cache_.end()) { in ProcessProfilingInfo()
598 for (auto&& pair : profile_cache_) { in ProcessProfilingInfo()
628 if (profile_cache_it != profile_cache_.end()) { in ProcessProfilingInfo()
630 profile_cache_.erase(profile_cache_it); in ProcessProfilingInfo()
Dprofile_saver.h139 SafeMap<std::string, ProfileCompilationInfo*> profile_cache_; variable