Home
last modified time | relevance | path

Searched refs:profile_key (Results 1 – 4 of 4) sorted by relevance

/art/libprofile/profile/
Dprofile_compilation_info.cc646 std::string_view profile_key) { in GetBaseKeyViewFromAugmentedKey() argument
647 size_t pos = profile_key.rfind(kSampleMetadataSeparator); in GetBaseKeyViewFromAugmentedKey()
648 return (pos == std::string::npos) ? profile_key : profile_key.substr(0, pos); in GetBaseKeyViewFromAugmentedKey()
652 const std::string& profile_key) { in GetBaseKeyFromAugmentedKey() argument
654 return std::string(GetBaseKeyViewFromAugmentedKey(profile_key)); in GetBaseKeyFromAugmentedKey()
1020 if (dex_data->profile_key.size() > kMaxDexFileKeyLength) { in Save()
1027 sizeof(uint16_t) + dex_data->profile_key.size(); in Save()
1087 buffer.WriteUintAndAdvance(dchecked_integral_cast<uint16_t>(dex_data->profile_key.size())); in Save()
1088 buffer.WriteAndAdvance(dex_data->profile_key.c_str(), dex_data->profile_key.size()); in Save()
1188 const std::string& profile_key, in GetOrAddDexFileData() argument
[all …]
Dprofile_compilation_info.h566 std::string_view base_key = GetBaseKeyViewFromAugmentedKey(dex_file_data->profile_key); in FindDexFileForProfileIndex()
615 static std::string GetBaseKeyFromAugmentedKey(const std::string& profile_key);
786 profile_key(key), in DexFileData()
891 std::string profile_key; member
955 DexFileData* GetOrAddDexFileData(const std::string& profile_key,
970 const DexFileData* FindDexData(const std::string& profile_key,
1169 return dex_file_data->profile_key; in GetProfileKey()
/art/profman/
Dprofman.cc529 [profile_filter_keys](const std::string& profile_key, uint32_t checksum) { in ProcessProfiles() argument
535 … std::string base_key = ProfileCompilationInfo::GetBaseKeyFromAugmentedKey(profile_key); in ProcessProfiles()
/art/dex2oat/
Ddex2oat.cc2416 auto filter_fn = [&](const std::string& profile_key, uint32_t checksum) { in LoadProfile() argument
2417 auto it = old_profile_keys.find(profile_key); in LoadProfile()
2426 new_profile_keys.insert(std::make_pair(profile_key, checksum)); in LoadProfile()