Searched refs:GetMethodAggregationCounter (Results 1 – 4 of 4) sorted by relevance
/art/libprofile/profile/ |
D | profile_compilation_info_test.cc | 1201 ASSERT_EQ(0, info1.GetMethodAggregationCounter(MethodReference(dex.get(), 1))); in TEST_F() 1202 ASSERT_EQ(1, info1.GetMethodAggregationCounter(MethodReference(dex.get(), 2))); in TEST_F() 1203 ASSERT_EQ(2, info1.GetMethodAggregationCounter(MethodReference(dex.get(), 3))); in TEST_F() 1204 ASSERT_EQ(1, info1.GetMethodAggregationCounter(MethodReference(dex.get(), 6))); in TEST_F() 1211 ASSERT_EQ(-1, info1.GetMethodAggregationCounter(MethodReference(dex.get(), 4))); in TEST_F() 1264 ASSERT_EQ(0, loaded_info.GetMethodAggregationCounter(MethodReference(dex.get(), 1))); in TEST_F() 1265 ASSERT_EQ(1, loaded_info.GetMethodAggregationCounter(MethodReference(dex.get(), 2))); in TEST_F() 1266 ASSERT_EQ(2, loaded_info.GetMethodAggregationCounter(MethodReference(dex.get(), 3))); in TEST_F() 1267 ASSERT_EQ(1, loaded_info.GetMethodAggregationCounter(MethodReference(dex.get(), 6))); in TEST_F() 1313 ASSERT_EQ(0, info1.GetMethodAggregationCounter(MethodReference(dex.get(), 1))); in TEST_F() [all …]
|
D | profile_compilation_info.h | 463 int32_t GetMethodAggregationCounter(const MethodReference& method_ref) const; 552 int32_t GetMethodAggregationCounter(uint16_t method_index) const;
|
D | profile_compilation_info.cc | 2157 int32_t ProfileCompilationInfo::DexFileData::GetMethodAggregationCounter( in GetMethodAggregationCounter() function in art::ProfileCompilationInfo::DexFileData 2176 int32_t ProfileCompilationInfo::GetMethodAggregationCounter( in GetMethodAggregationCounter() function in art::ProfileCompilationInfo 2180 return dex_data == nullptr ? -1 : dex_data->GetMethodAggregationCounter(method_ref.index); in GetMethodAggregationCounter()
|
/art/profman/ |
D | profile_assistant_test.cc | 1348 ASSERT_EQ(1, result.GetMethodAggregationCounter(MethodReference(&d1, i))); in TEST_F() 1349 ASSERT_EQ(1, result.GetMethodAggregationCounter(MethodReference(&d2, i))); in TEST_F()
|