Home
last modified time | relevance | path

Searched refs:GetMethodAggregationCounter (Results 1 – 4 of 4) sorted by relevance

/art/libprofile/profile/
Dprofile_compilation_info_test.cc1201 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 …]
Dprofile_compilation_info.h463 int32_t GetMethodAggregationCounter(const MethodReference& method_ref) const;
552 int32_t GetMethodAggregationCounter(uint16_t method_index) const;
Dprofile_compilation_info.cc2157 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/
Dprofile_assistant_test.cc1348 ASSERT_EQ(1, result.GetMethodAggregationCounter(MethodReference(&d1, i))); in TEST_F()
1349 ASSERT_EQ(1, result.GetMethodAggregationCounter(MethodReference(&d2, i))); in TEST_F()