Lines Matching refs:profile_index
309 return (data != nullptr) ? data->profile_index : MaxProfileIndex();
332 void AddClass(ProfileIndexType profile_index, dex::TypeIndex type_index) { in AddClass() argument
333 DCHECK_LT(profile_index, info_.size()); in AddClass()
334 DexFileData* const data = info_[profile_index].get(); in AddClass()
393 void AddMethod(ProfileIndexType profile_index, uint32_t method_index, MethodHotness::Flag flags) { in AddMethod() argument
394 DCHECK_LT(profile_index, info_.size()); in AddMethod()
395 DexFileData* const data = info_[profile_index].get(); in AddMethod()
512 const DexFile* FindDexFileForProfileIndex(ProfileIndexType profile_index, in FindDexFileForProfileIndex() argument
516 DCHECK_LE(profile_index, info_.size()); in FindDexFileForProfileIndex()
517 const DexFileData* dex_file_data = info_[profile_index].get(); in FindDexFileForProfileIndex()
530 DexReferenceDumper DumpDexReference(ProfileIndexType profile_index) const;
734 profile_index(index), in DexFileData()
809 ProfileIndexType profile_index; member
1074 ProfileIndexType profile_index) const { in DumpDexReference() argument
1075 return DexReferenceDumper{info_[profile_index].get()}; in DumpDexReference()