Home
last modified time | relevance | path

Searched refs:IsCategoryGroupEnabled (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/base/debug/
Dtrace_event_unittest.cc2290 EXPECT_TRUE(default_cf.IsCategoryGroupEnabled("not-excluded-category")); in TEST_F()
2292 default_cf.IsCategoryGroupEnabled("disabled-by-default-category")); in TEST_F()
2293 EXPECT_FALSE(default_cf.IsCategoryGroupEnabled("Category1,CategoryDebug")); in TEST_F()
2294 EXPECT_FALSE(default_cf.IsCategoryGroupEnabled("CategoryDebug,Category1")); in TEST_F()
2295 EXPECT_FALSE(default_cf.IsCategoryGroupEnabled("CategoryTest,Category2")); in TEST_F()
2301 EXPECT_TRUE(default_cf.IsCategoryGroupEnabled("not-excluded-category")); in TEST_F()
2302 EXPECT_FALSE(default_cf.IsCategoryGroupEnabled("Category1,CategoryDebug")); in TEST_F()
2303 EXPECT_FALSE(default_cf.IsCategoryGroupEnabled("CategoryDebug,Category1")); in TEST_F()
2304 EXPECT_FALSE(default_cf.IsCategoryGroupEnabled("CategoryTest,Category2")); in TEST_F()
2311 EXPECT_TRUE(cf.IsCategoryGroupEnabled("included")); in TEST_F()
[all …]
Dtrace_event_impl.h318 bool IsCategoryGroupEnabled(const char* category_group) const;
Dtrace_event_impl.cc1195 if (enabled_ && category_filter_.IsCategoryGroupEnabled(category_group)) in UpdateCategoryGroupEnabledFlag()
1198 event_callback_category_filter_.IsCategoryGroupEnabled(category_group)) in UpdateCategoryGroupEnabledFlag()
2230 bool CategoryFilter::IsCategoryGroupEnabled( in IsCategoryGroupEnabled() function in base::debug::CategoryFilter