Lines Matching refs:te_cfg
436 perfetto::protos::gen::TrackEventConfig te_cfg; in NewTraceWithCategories() local
437 te_cfg.add_disabled_categories("*"); in NewTraceWithCategories()
439 te_cfg.add_enabled_categories(category); in NewTraceWithCategories()
440 ds_cfg->set_track_event_config_raw(te_cfg.SerializeAsString()); in NewTraceWithCategories()
790 perfetto::protos::gen::TrackEventConfig te_cfg; in TEST_P() local
791 te_cfg.add_disabled_categories("*"); in TEST_P()
792 te_cfg.add_enabled_categories("foo"); in TEST_P()
793 ds_cfg->set_track_event_config_raw(te_cfg.SerializeAsString()); in TEST_P()
2420 auto check_config = [&](perfetto::protos::gen::TrackEventConfig te_cfg) { in TEST_P() argument
2426 ds_cfg->set_track_event_config_raw(te_cfg.SerializeAsString()); in TEST_P()
2454 perfetto::protos::gen::TrackEventConfig te_cfg; in TEST_P() local
2455 auto slices = check_config(te_cfg); in TEST_P()
2467 perfetto::protos::gen::TrackEventConfig te_cfg; in TEST_P() local
2468 te_cfg.add_disabled_categories("*"); in TEST_P()
2469 te_cfg.add_enabled_categories("foo"); in TEST_P()
2470 auto slices = check_config(te_cfg); in TEST_P()
2478 perfetto::protos::gen::TrackEventConfig te_cfg; in TEST_P() local
2479 te_cfg.add_disabled_categories("*"); in TEST_P()
2480 te_cfg.add_enabled_categories("dynamic"); in TEST_P()
2481 auto slices = check_config(te_cfg); in TEST_P()
2488 perfetto::protos::gen::TrackEventConfig te_cfg; in TEST_P() local
2489 te_cfg.add_disabled_categories("*"); in TEST_P()
2490 te_cfg.add_enabled_categories("foo"); in TEST_P()
2491 te_cfg.add_enabled_categories("baz"); in TEST_P()
2492 te_cfg.add_enabled_categories("bar"); in TEST_P()
2493 auto slices = check_config(te_cfg); in TEST_P()
2504 perfetto::protos::gen::TrackEventConfig te_cfg; in TEST_P() local
2505 te_cfg.add_enabled_categories("*"); in TEST_P()
2506 auto slices = check_config(te_cfg); in TEST_P()
2518 perfetto::protos::gen::TrackEventConfig te_cfg; in TEST_P() local
2519 te_cfg.add_disabled_categories("*"); in TEST_P()
2520 te_cfg.add_enabled_categories("fo*"); in TEST_P()
2521 auto slices = check_config(te_cfg); in TEST_P()
2529 perfetto::protos::gen::TrackEventConfig te_cfg; in TEST_P() local
2530 te_cfg.add_disabled_categories("*"); in TEST_P()
2531 te_cfg.add_enabled_tags("tag"); in TEST_P()
2532 auto slices = check_config(te_cfg); in TEST_P()
2538 perfetto::protos::gen::TrackEventConfig te_cfg; in TEST_P() local
2539 te_cfg.add_disabled_categories("*"); in TEST_P()
2540 te_cfg.add_enabled_tags("slow"); in TEST_P()
2541 auto slices = check_config(te_cfg); in TEST_P()
2549 perfetto::protos::gen::TrackEventConfig te_cfg; in TEST_P() local
2550 te_cfg.add_enabled_categories("*"); in TEST_P()
2551 te_cfg.add_enabled_tags("slow"); in TEST_P()
2552 te_cfg.add_enabled_tags("debug"); in TEST_P()
2553 auto slices = check_config(te_cfg); in TEST_P()