Lines Matching refs:dex_location

162       const std::string& dex_location,  in GetProfileDexFileAugmentedKey()  argument
164 std::string base_key = GetProfileDexFileBaseKey(dex_location); in GetProfileDexFileAugmentedKey()
174 std::string ProfileCompilationInfo::GetProfileDexFileBaseKey(const std::string& dex_location) { in GetProfileDexFileBaseKey() argument
175 DCHECK(!dex_location.empty()); in GetProfileDexFileBaseKey()
176 size_t last_sep_index = dex_location.find_last_of('/'); in GetProfileDexFileBaseKey()
178 return dex_location; in GetProfileDexFileBaseKey()
180 DCHECK(last_sep_index < dex_location.size()); in GetProfileDexFileBaseKey()
181 return dex_location.substr(last_sep_index + 1); in GetProfileDexFileBaseKey()
1120 const std::string& dex_location = dex_file->GetLocation(); in VerifyProfileData() local
1123 << "dex location " << dex_location << " (checksum=" in VerifyProfileData()
1131 << "dex location " << dex_location << " NumMethodId in DexFile" in VerifyProfileData()
1142 << dex_location << " method_id=" << method_id << " NumMethodIds=" in VerifyProfileData()
1175 << dex_location << " method_id=" << method_id in VerifyProfileData()
1191 << dex_location << " class_id=" << class_id.index_ << " NumClassIds=" in VerifyProfileData()
1820 std::string dex_location = DexFileLoader::GetMultiDexLocation(i, base_dex_location.c_str()); in GenerateTestProfile() local
1821 std::string profile_key = info.GetProfileDexFileBaseKey(dex_location); in GenerateTestProfile()
2201 const std::string& dex_location ATTRIBUTE_UNUSED, in ProfileFilterFnAcceptAll()