Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/utility/source/
Dprocess_thread_impl_unittest.cc32 MOCK_METHOD1(ProcessThreadAttached, void(ProcessThread*));
82 EXPECT_CALL(module, ProcessThreadAttached(&thread)).Times(1); in TEST()
87 EXPECT_CALL(module, ProcessThreadAttached(nullptr)).Times(1); in TEST()
105 EXPECT_CALL(module, ProcessThreadAttached(&thread)).Times(1); in TEST()
109 EXPECT_CALL(module, ProcessThreadAttached(nullptr)).Times(1); in TEST()
130 EXPECT_CALL(module, ProcessThreadAttached(&thread)).Times(1); in TEST()
135 EXPECT_CALL(module, ProcessThreadAttached(nullptr)).Times(1); in TEST()
169 EXPECT_CALL(module, ProcessThreadAttached(&thread)).Times(1); in ProcessCallAfterAFewMs()
176 EXPECT_CALL(module, ProcessThreadAttached(nullptr)).Times(1); in ProcessCallAfterAFewMs()
230 EXPECT_CALL(module, ProcessThreadAttached(&thread)).Times(1); in TEST()
[all …]
Dprocess_thread_impl.cc75 m.module->ProcessThreadAttached(this); in Start()
107 m.module->ProcessThreadAttached(nullptr); in Stop()
148 module->ProcessThreadAttached(this); in RegisterModule()
181 module->ProcessThreadAttached(nullptr); in DeRegisterModule()
/external/webrtc/webrtc/modules/include/
Dmodule.h56 virtual void ProcessThreadAttached(ProcessThread* process_thread) {} in ProcessThreadAttached() function