Home
last modified time | relevance | path

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

/art/libprofile/profile/
Dprofile_compilation_info.cc111 profile_key_map_(std::less<const std::string>(), allocator_.Adapter(kArenaAllocProfile)) { in ProfileCompilationInfo()
612 const auto profile_index_it = profile_key_map_.FindOrAdd(profile_key, profile_key_map_.size()); in GetOrAddDexFileData()
613 if (profile_key_map_.size() > MaxProfileIndex()) { in GetOrAddDexFileData()
620 profile_key_map_.erase(profile_key); in GetOrAddDexFileData()
665 const auto profile_index_it = profile_key_map_.find(profile_key); in FindDexData()
666 if (profile_index_it == profile_key_map_.end()) { in FindDexData()
2003 DCHECK_EQ(info_.empty(), profile_key_map_.empty()); in IsEmpty()
2181 if (profile_key_map_.find(new_profile_key) != profile_key_map_.end()) { in UpdateProfileKeys()
2187 profile_key_map_.erase(dex_data->profile_key); in UpdateProfileKeys()
2190 profile_key_map_.Put(MigrateAnnotationInfo(new_profile_key, dex_data->profile_key), in UpdateProfileKeys()
[all …]
Dprofile_compilation_info.h971 ArenaSafeMap<const std::string, ProfileIndexType> profile_key_map_; variable