Home
last modified time | relevance | path

Searched refs:module_thread_ (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/api/test/
Dcreate_time_controller.cc38 if (!module_thread_) { in CreateTimeControllerBasedCallFactory()
39 module_thread_ = SharedModuleThread::Create( in CreateTimeControllerBasedCallFactory()
41 [this]() { module_thread_ = nullptr; }); in CreateTimeControllerBasedCallFactory()
43 return Call::Create(config, time_controller_->GetClock(), module_thread_, in CreateTimeControllerBasedCallFactory()
49 rtc::scoped_refptr<SharedModuleThread> module_thread_; in CreateTimeControllerBasedCallFactory() member in webrtc::CreateTimeControllerBasedCallFactory::TimeControllerBasedCallFactory
/external/webrtc/call/
Dcall_factory.cc90 if (!module_thread_) { in CreateCall()
91 module_thread_ = SharedModuleThread::Create( in CreateCall()
94 module_thread_ = nullptr; in CreateCall()
98 return Call::Create(config, module_thread_); in CreateCall()
Dcall_factory.h31 rtc::scoped_refptr<SharedModuleThread> module_thread_
Dcall.cc487 : module_thread_(std::move(process_thread)), in Impl()
495 module_thread_->Start(); in EnsureStarted()
500 return module_thread_.get(); in process_thread()
513 module_thread_->Stop(); in Release()
534 std::unique_ptr<ProcessThread> const module_thread_; member in webrtc::SharedModuleThread::Impl
/external/webrtc/test/scenario/
Dcall_client.cc217 RTC_DCHECK(!module_thread_); in CallClient()
218 module_thread_ = SharedModuleThread::Create( in CallClient()
220 [this]() { module_thread_ = nullptr; }); in CallClient()
224 fake_audio_setup_.audio_state, module_thread_)); in CallClient()
232 RTC_DCHECK(!module_thread_); // Should be set to null in the lambda above. in ~CallClient()
Dcall_client.h160 rtc::scoped_refptr<SharedModuleThread> module_thread_; variable