Lines Matching refs:profile_index

1136   ProfileIndexType profile_index = profile_index_it->second;  in GetOrAddDexFileData()  local
1137 DexFileData* result = info_[profile_index].get(); in GetOrAddDexFileData()
1149 DCHECK_EQ(profile_index, result->profile_index); in GetOrAddDexFileData()
1171 ProfileIndexType profile_index = profile_index_it->second; in FindDexData() local
1172 const DexFileData* result = info_[profile_index].get(); in FindDexData()
1177 DCHECK_EQ(profile_index, result->profile_index); in FindDexData()
1542 dex_profile_index_remap->push_back(data->profile_index); in ReadDexFilesSection()
1616 ProfileIndexType profile_index; in ReadClassesSection() local
1617 if (!buffer.ReadUintAndAdvance(&profile_index)) { in ReadClassesSection()
1621 if (profile_index >= dex_profile_index_remap.size()) { in ReadClassesSection()
1625 profile_index = dex_profile_index_remap[profile_index]; in ReadClassesSection()
1626 if (profile_index == MaxProfileIndex()) { in ReadClassesSection()
1629 status = info_[profile_index]->ReadClasses(buffer, extra_descriptors_remap, error); in ReadClassesSection()
1652 ProfileIndexType profile_index; in ReadMethodsSection() local
1653 if (!buffer.ReadUintAndAdvance(&profile_index)) { in ReadMethodsSection()
1657 if (profile_index >= dex_profile_index_remap.size()) { in ReadMethodsSection()
1661 profile_index = dex_profile_index_remap[profile_index]; in ReadMethodsSection()
1662 if (profile_index == MaxProfileIndex()) { in ReadMethodsSection()
1665 status = info_[profile_index]->ReadMethods(buffer, extra_descriptors_remap, error); in ReadMethodsSection()
1854 DCHECK_EQ(other_dex_data->profile_index, dex_profile_index_remap.size()); in MergeWith()
1855 dex_profile_index_remap.push_back(dex_data->profile_index); in MergeWith()
1877 DexFileData* dex_data = info_[dex_profile_index_remap[other_dex_data->profile_index]].get(); in MergeWith()
2009 os << " [index=" << static_cast<uint32_t>(dex_data->profile_index) << "]"; in DumpInfo()
2429 profile_key_map_.Put(dex_data->profile_key, dex_data->profile_index); in UpdateProfileKeys()
2481 buffer.WriteUintAndAdvance(profile_index); in WriteClasses()
2603 buffer.WriteUintAndAdvance(profile_index); in WriteMethods()