Searched refs:info_it (Results 1 - 2 of 2) sorted by relevance

/art/runtime/jit/
H A Doffline_profiling_info.cc244 auto info_it = info_.find(dex_location); local
245 if (info_it == info_.end()) {
246 info_it = info_.Put(dex_location, DexFileData(checksum));
248 if (info_it->second.checksum != checksum) {
252 return &info_it->second;
527 auto info_it = info_.find(other_it.first); local
528 if ((info_it != info_.end()) && (info_it->second.checksum != other_it.second.checksum)) {
537 auto info_it = info_.find(other_dex_location); local
538 if (info_it
550 auto info_it = info_.find(GetProfileDexFileKey(method_ref.dex_file->GetLocation())); local
562 auto info_it = info_.find(GetProfileDexFileKey(dex_file.GetLocation())); local
[all...]
H A Dprofile_saver.cc189 auto info_it = profile_cache_.find(filename); local
190 if (info_it == profile_cache_.end()) {
191 info_it = profile_cache_.Put(filename, ProfileCompilationInfo());
193 return &info_it->second;

Completed in 130 milliseconds