Home
last modified time | relevance | path

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

/art/libprofile/profile/
Dprofile_compilation_info.cc633 std::string_view profile_key) { in GetBaseKeyViewFromAugmentedKey() argument
634 size_t pos = profile_key.rfind(kSampleMetadataSeparator); in GetBaseKeyViewFromAugmentedKey()
635 return (pos == std::string::npos) ? profile_key : profile_key.substr(0, pos); in GetBaseKeyViewFromAugmentedKey()
639 const std::string& profile_key) { in GetBaseKeyFromAugmentedKey() argument
641 return std::string(GetBaseKeyViewFromAugmentedKey(profile_key)); in GetBaseKeyFromAugmentedKey()
936 if (dex_data->profile_key.size() > kMaxDexFileKeyLength) { in Save()
943 sizeof(uint16_t) + dex_data->profile_key.size(); in Save()
1003 buffer.WriteUintAndAdvance(dchecked_integral_cast<uint16_t>(dex_data->profile_key.size())); in Save()
1004 buffer.WriteAndAdvance(dex_data->profile_key.c_str(), dex_data->profile_key.size()); in Save()
1104 const std::string& profile_key, in GetOrAddDexFileData() argument
[all …]
Dprofile_compilation_info.h520 std::string_view base_key = GetBaseKeyViewFromAugmentedKey(dex_file_data->profile_key); in FindDexFileForProfileIndex()
565 static std::string GetBaseKeyFromAugmentedKey(const std::string& profile_key);
733 profile_key(key), in DexFileData()
807 std::string profile_key; member
841 DexFileData* GetOrAddDexFileData(const std::string& profile_key,
856 const DexFileData* FindDexData(const std::string& profile_key,
1055 return dex_file_data->profile_key; in GetProfileKey()
/art/profman/
Dprofman.cc527 [profile_filter_keys](const std::string& profile_key, uint32_t checksum) { in ProcessProfiles() argument
533 … std::string base_key = ProfileCompilationInfo::GetBaseKeyFromAugmentedKey(profile_key); in ProcessProfiles()