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.cc105 profile_key_map_(std::less<const std::string>(), allocator_.Adapter(kArenaAllocProfile)), in ProfileCompilationInfo()
114 profile_key_map_(std::less<const std::string>(), allocator_.Adapter(kArenaAllocProfile)), in ProfileCompilationInfo()
627 const auto profile_index_it = profile_key_map_.FindOrAdd(profile_key, profile_key_map_.size()); in GetOrAddDexFileData()
628 if (profile_key_map_.size() > std::numeric_limits<uint8_t>::max()) { in GetOrAddDexFileData()
634 profile_key_map_.erase(profile_key); in GetOrAddDexFileData()
679 const auto profile_index_it = profile_key_map_.find(profile_key); in FindDexData()
680 if (profile_index_it == profile_key_map_.end()) { in FindDexData()
2098 DCHECK_EQ(info_.empty(), profile_key_map_.empty()); in IsEmpty()
2260 if (profile_key_map_.find(new_profile_key) != profile_key_map_.end()) { in UpdateProfileKeys()
2266 profile_key_map_.erase(dex_data->profile_key); in UpdateProfileKeys()
[all …]
Dprofile_compilation_info.h866 ArenaSafeMap<const std::string, uint8_t> profile_key_map_; variable