Home
last modified time | relevance | path

Searched refs:GetFlags (Results 1 – 8 of 8) sorted by relevance

/art/libprofile/profile/
Dprofile_compilation_info_test.cc1250 << info.GetMethodHotness(MethodReference(dex1, index)).GetFlags(); in TEST_F()
1393 EXPECT_EQ(info.GetMethodHotness(hot).GetFlags(), Hotness::kFlagHot); in TEST_F()
1396 EXPECT_EQ(info.GetMethodHotness(hot_startup).GetFlags(), in TEST_F()
1400 EXPECT_EQ(info.GetMethodHotness(startup).GetFlags(), Hotness::kFlagStartup); in TEST_F()
1760 ASSERT_EQ(mIt1->second.GetFlags(), Hotness::kFlagHot | Hotness::kFlagStartup); in TEST_F()
1765 ASSERT_EQ(cIt1->second.GetFlags(), 0); in TEST_F()
1770 ASSERT_EQ(mIt2->second.GetFlags(), Hotness::kFlagHot); in TEST_F()
1826 ASSERT_EQ(mIt1->second.GetFlags(), Hotness::kFlagHot | Hotness::kFlagStartup); in TEST_F()
1831 ASSERT_EQ(cIt1->second.GetFlags(), 0); in TEST_F()
1837 ASSERT_EQ(mIt2->second.GetFlags(), Hotness::kFlagHot); in TEST_F()
Dprofile_compilation_info.h254 uint32_t GetFlags() const { in GetFlags() function
988 uint16_t GetFlags() const { in GetFlags() function
Dprofile_compilation_info.cc2369 metadata.flags_ |= otherData.GetFlags(); in MergeData()
2385 metadata.flags_ |= otherData.GetFlags(); in MergeData()
/art/profman/
Dboot_image_profile.cc234 && ((metadata.GetFlags() & Hotness::Flag::kFlagStartup) != 0)) { in GenerateBootImageProfile()
/art/dexlayout/
Ddex_writer.cc499 stream->WriteUleb128(item->GetFlags(&field)); in WriteHiddenapiClassData()
502 stream->WriteUleb128(item->GetFlags(&field)); in WriteHiddenapiClassData()
505 stream->WriteUleb128(item->GetFlags(&method)); in WriteHiddenapiClassData()
508 stream->WriteUleb128(item->GetFlags(&method)); in WriteHiddenapiClassData()
Ddexlayout.cc1470 dex_ir::HiddenapiClassData::GetFlags(header_, class_def, &(*static_fields)[i]), in DumpClass()
1487 dex_ir::HiddenapiClassData::GetFlags(header_, class_def, &(*instance_fields)[i]), in DumpClass()
1503 dex_ir::HiddenapiClassData::GetFlags(header_, class_def, &(*direct_methods)[i]), in DumpClass()
1520 dex_ir::HiddenapiClassData::GetFlags(header_, class_def, &(*virtual_methods)[i]), in DumpClass()
1770 } else if (is_startup_clinit || hotness.GetFlags() == Hotness::kFlagStartup) { in LayoutCodeItems()
Ddex_ir.h1287 uint32_t GetFlags(const Item* field_or_method_item) const { in GetFlags() function
1291 static uint32_t GetFlags(Header* header, ClassDef* class_def, const Item* field_or_method_item) { in GetFlags() function
1296 : header->HiddenapiClassDatas()[class_def->GetIndex()]->GetFlags(field_or_method_item); in GetFlags()
/art/dex2oat/linker/
Doat_writer.cc2293 << reinterpret_cast<void*>(ordered_method.method_hotness.GetFlags()); in InitOatCodeDexFiles()