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.cc89 MOCK_METHOD1(GetOrCreateEvent, Event*(const GroupAndName& group_and_name));
224 ON_CALL(*mock_table, GetOrCreateEvent(GroupAndName("power", "cpu_frequency"))) in TEST_F()
227 GetOrCreateEvent(GroupAndName("power", "cpu_frequency"))); in TEST_F()
255 ON_CALL(*mock_table, GetOrCreateEvent(GroupAndName("group_one", "foo"))) in TEST_F()
257 EXPECT_CALL(*mock_table, GetOrCreateEvent(GroupAndName("group_one", "foo"))); in TEST_F()
264 ON_CALL(*mock_table, GetOrCreateEvent(GroupAndName("group_two", "foo"))) in TEST_F()
266 EXPECT_CALL(*mock_table, GetOrCreateEvent(GroupAndName("group_two", "foo"))); in TEST_F()
312 ON_CALL(*mock_table, GetOrCreateEvent(GroupAndName("sched", "sched_switch"))) in TEST_F()
315 GetOrCreateEvent(GroupAndName("sched", "sched_switch"))) in TEST_F()
325 GetOrCreateEvent(GroupAndName("sched", "sched_new_event"))) in TEST_F()
[all …]
Dproto_translation_table.h155 virtual const Event* GetOrCreateEvent(const GroupAndName&);
Dproto_translation_table.cc497 const Event* ProtoTranslationTable::GetOrCreateEvent( in GetOrCreateEvent() function in perfetto::ProtoTranslationTable
Dproto_translation_table_unittest.cc456 const Event* e = table->GetOrCreateEvent(group_and_name); in TEST()
Dftrace_config_muxer.cc493 const Event* event = table_->GetOrCreateEvent(group_and_name); in SetupConfig()