Home
last modified time | relevance | path

Searched refs:GetOrCreateEvent (Results 1 – 5 of 5) sorted by relevance

/external/perfetto/src/traced/probes/ftrace/
Dftrace_config_muxer_unittest.cc87 MOCK_METHOD1(GetOrCreateEvent, Event*(const GroupAndName& group_and_name));
212 ON_CALL(*mock_table, GetOrCreateEvent(GroupAndName("power", "cpu_frequency"))) in TEST_F()
215 GetOrCreateEvent(GroupAndName("power", "cpu_frequency"))); in TEST_F()
236 ON_CALL(*mock_table, GetOrCreateEvent(GroupAndName("group_one", "foo"))) in TEST_F()
238 EXPECT_CALL(*mock_table, GetOrCreateEvent(GroupAndName("group_one", "foo"))); in TEST_F()
244 ON_CALL(*mock_table, GetOrCreateEvent(GroupAndName("group_two", "foo"))) in TEST_F()
246 EXPECT_CALL(*mock_table, GetOrCreateEvent(GroupAndName("group_two", "foo"))); in TEST_F()
288 ON_CALL(*mock_table, GetOrCreateEvent(GroupAndName("sched", "sched_switch"))) in TEST_F()
291 GetOrCreateEvent(GroupAndName("sched", "sched_switch"))) in TEST_F()
300 GetOrCreateEvent(GroupAndName("sched", "sched_new_event"))) in TEST_F()
[all …]
Dproto_translation_table.h144 virtual const Event* GetOrCreateEvent(const GroupAndName&);
Dftrace_config_muxer.cc332 const Event* event = table_->GetOrCreateEvent(group_and_name); in SetupConfig()
Dproto_translation_table_unittest.cc400 const Event* e = table->GetOrCreateEvent(group_and_name); in TEST()
Dproto_translation_table.cc472 const Event* ProtoTranslationTable::GetOrCreateEvent( in GetOrCreateEvent() function in perfetto::ProtoTranslationTable