Lines Matching refs:GetMethodHotness

72     return info.GetMethodHotness(MethodReference(dex, method_idx), annotation);  in GetMethod()
821 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, 2)).IsInProfile()); in TEST_F()
822 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, 4)).IsInProfile()); in TEST_F()
823 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, 1)).IsStartup()); in TEST_F()
824 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, 3)).IsStartup()); in TEST_F()
825 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, 5)).IsPostStartup()); in TEST_F()
826 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, 6)).IsStartup()); in TEST_F()
827 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex2, 2)).IsStartup()); in TEST_F()
828 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex2, 4)).IsPostStartup()); in TEST_F()
843 EXPECT_FALSE(test_info.GetMethodHotness(MethodReference(dex1, 11)).IsStartup()); in TEST_F()
849 EXPECT_TRUE(test_info.GetMethodHotness(MethodReference(dex1, 11)).IsStartup()); in TEST_F()
872 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), id)).IsHot()); in TEST_F()
873 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), id)).IsStartup()); in TEST_F()
876 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), id)).IsStartup()); in TEST_F()
879 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), id)).IsPostStartup()); in TEST_F()
881 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), 6)).IsPostStartup()); in TEST_F()
883 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), 0)).IsInProfile()); in TEST_F()
884 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex.get(), 4)).IsInProfile()); in TEST_F()
885 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex.get(), 7)).IsInProfile()); in TEST_F()
886 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex.get(), 1)).IsPostStartup()); in TEST_F()
887 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex.get(), 4)).IsStartup()); in TEST_F()
888 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex.get(), 6)).IsStartup()); in TEST_F()
1340 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, index)).IsInProfile()); in TEST_F()
1341 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, index)) in TEST_F()
1343 << info.GetMethodHotness(MethodReference(dex1, index)).GetFlags(); in TEST_F()
1369 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, 0)).IsInProfile()); in TEST_F()
1370 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, 0)) in TEST_F()
1410 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, 0)).IsInProfile()); in TEST_F()
1411 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, 0)) in TEST_F()
1414 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, 1)).IsInProfile()); in TEST_F()
1415 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, 1)) in TEST_F()
1423 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, 0)).IsInProfile()); in TEST_F()
1424 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, 0)) in TEST_F()
1427 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, 1)).IsInProfile()); in TEST_F()
1428 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, 1)) in TEST_F()
1436 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, 0)) in TEST_F()
1438 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, 1)) in TEST_F()
1482 EXPECT_TRUE(info.GetMethodHotness(hot).IsInProfile()); in TEST_F()
1483 EXPECT_EQ(info.GetMethodHotness(hot).GetFlags(), Hotness::kFlagHot); in TEST_F()
1485 EXPECT_TRUE(info.GetMethodHotness(hot_startup).IsInProfile()); in TEST_F()
1486 EXPECT_EQ(info.GetMethodHotness(hot_startup).GetFlags(), in TEST_F()
1489 EXPECT_TRUE(info.GetMethodHotness(startup).IsInProfile()); in TEST_F()
1490 EXPECT_EQ(info.GetMethodHotness(startup).GetFlags(), Hotness::kFlagStartup); in TEST_F()
1550 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, i), psa1).IsInProfile()); in TEST_F()
1551 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, i), psa1).IsHot()); in TEST_F()
1554 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, i), psa2).IsInProfile()); in TEST_F()
1555 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, i), psa2).IsHot()); in TEST_F()
1559 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, i), psa1).IsInProfile()); in TEST_F()
1560 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, i), psa1).IsHot()); in TEST_F()
1563 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, i), psa2).IsInProfile()); in TEST_F()
1564 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, i), psa2).IsHot()); in TEST_F()
1568 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, i)).IsInProfile()); in TEST_F()
1569 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, i)).IsHot()); in TEST_F()
1573 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, i)).IsInProfile()); in TEST_F()
1574 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, i)).IsHot()); in TEST_F()
1580 EXPECT_FALSE(info.GetMethodHotness(ref, not_existing).IsInProfile()); in TEST_F()
1581 EXPECT_FALSE(info.GetMethodHotness(ref, not_existing).IsHot()); in TEST_F()
1684 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, i), psa1).IsInProfile()); in TEST_F()
1688 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, i), psa2).IsInProfile()); in TEST_F()
1689 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex2, i), psa2).IsInProfile()); in TEST_F()
1695 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, i), psa2).IsInProfile()); in TEST_F()
1696 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex2, i), psa2).IsInProfile()); in TEST_F()
1747 EXPECT_TRUE(info_12.GetMethodHotness(MethodReference(dex1, i), psa1).IsInProfile()); in TEST_F()
1849 EXPECT_TRUE(info.GetMethodHotness(ref, psa1).IsInProfile()); in TEST_F()
1851 EXPECT_FALSE(info.GetMethodHotness(ref_checksum_missmatch, psa1).IsInProfile()); in TEST_F()
1854 EXPECT_TRUE(info.GetMethodHotness(ref).IsInProfile()); in TEST_F()
1855 EXPECT_FALSE(info.GetMethodHotness(ref_checksum_missmatch).IsInProfile()); in TEST_F()