Home
last modified time | relevance | path

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

/art/libprofile/profile/
Dprofile_compilation_info_test.cc1321 << info.GetMethodHotness(MethodReference(dex1, index)).GetFlags(); in TEST_F()
1461 EXPECT_EQ(info.GetMethodHotness(hot).GetFlags(), Hotness::kFlagHot); in TEST_F()
1464 EXPECT_EQ(info.GetMethodHotness(hot_startup).GetFlags(), in TEST_F()
1468 EXPECT_EQ(info.GetMethodHotness(startup).GetFlags(), Hotness::kFlagStartup); in TEST_F()
1899 ASSERT_EQ(mIt1->second.GetFlags(), Hotness::kFlagHot | Hotness::kFlagStartup); in TEST_F()
1904 ASSERT_EQ(cIt1->second.GetFlags(), 0); in TEST_F()
1909 ASSERT_EQ(mIt2->second.GetFlags(), Hotness::kFlagHot); in TEST_F()
1965 ASSERT_EQ(mIt1->second.GetFlags(), Hotness::kFlagHot | Hotness::kFlagStartup); in TEST_F()
1970 ASSERT_EQ(cIt1->second.GetFlags(), 0); in TEST_F()
1976 ASSERT_EQ(mIt2->second.GetFlags(), Hotness::kFlagHot); in TEST_F()
Dprofile_compilation_info.h231 uint32_t GetFlags() const { in GetFlags() function
1104 uint16_t GetFlags() const { in GetFlags() function
Dprofile_compilation_info.cc3040 metadata.flags_ |= otherData.GetFlags(); in MergeData()
3056 metadata.flags_ |= otherData.GetFlags(); in MergeData()
/art/dexlayout/
Ddex_writer.cc497 stream->WriteUleb128(item->GetFlags(&field)); in WriteHiddenapiClassData()
500 stream->WriteUleb128(item->GetFlags(&field)); in WriteHiddenapiClassData()
503 stream->WriteUleb128(item->GetFlags(&method)); in WriteHiddenapiClassData()
506 stream->WriteUleb128(item->GetFlags(&method)); in WriteHiddenapiClassData()
Ddexlayout.cc1542 dex_ir::HiddenapiClassData::GetFlags(header_, class_def, &(*static_fields)[i]), in DumpClass()
1559 dex_ir::HiddenapiClassData::GetFlags(header_, class_def, &(*instance_fields)[i]), in DumpClass()
1575 dex_ir::HiddenapiClassData::GetFlags(header_, class_def, &(*direct_methods)[i]), in DumpClass()
1592 dex_ir::HiddenapiClassData::GetFlags(header_, class_def, &(*virtual_methods)[i]), in DumpClass()
2072 } else if (is_startup_clinit || hotness.GetFlags() == Hotness::kFlagStartup) { in LayoutCodeItems()
Ddex_ir.h1295 uint32_t GetFlags(const Item* field_or_method_item) const { in GetFlags() function
1299 static uint32_t GetFlags(Header* header, ClassDef* class_def, const Item* field_or_method_item) { in GetFlags() function
1304 : header->HiddenapiClassDatas()[class_def->GetIndex()]->GetFlags(field_or_method_item); in GetFlags()
/art/profman/
Dboot_image_profile.cc234 && ((metadata.GetFlags() & Hotness::Flag::kFlagStartup) != 0)) { in GenerateBootImageProfile()
/art/runtime/
Dtrace.h233 static int GetFlags() REQUIRES(!Locks::trace_lock_);
Dtrace.cc1305 int Trace::GetFlags() { in GetFlags() function in art::Trace
/art/runtime/native/
Ddalvik_system_ZygoteHooks.cc370 int flags = Trace::GetFlags(); in ZygoteHooks_nativePostForkChild()