HomeSort by relevance Sort by last modified time
    Searched refs:process_thread_ (Results 1 - 12 of 12) sorted by null

  /external/webrtc/talk/app/webrtc/test/
fakeaudiocapturemodule.cc 73 if (process_thread_) {
74 process_thread_->Stop();
645 if (!process_thread_) {
646 process_thread_.reset(new rtc::Thread());
647 process_thread_->Start();
649 process_thread_->Post(this, MSG_START_PROCESS);
651 if (process_thread_) {
652 process_thread_->Stop();
653 process_thread_.reset(nullptr);
660 ASSERT(process_thread_->IsCurrent())
    [all...]
fakeaudiocapturemodule.h 267 rtc::scoped_ptr<rtc::Thread> process_thread_; member in class:FakeAudioCaptureModule
279 // Protects variables that are accessed from process_thread_ and
282 // Protects |audio_callback_| that is accessed from process_thread_ and
  /external/webrtc/webrtc/video/
encoder_state_feedback_unittest.cc 58 process_thread_.reset(new NiceMock<MockProcessThread>);
61 rtc::scoped_ptr<MockProcessThread> process_thread_; member in class:webrtc::VieKeyRequestTest
69 MockVieEncoder encoder(process_thread_.get(), &pacer_);
97 MockVieEncoder encoder_1(process_thread_.get(), &pacer_);
98 MockVieEncoder encoder_2(process_thread_.get(), &pacer_);
vie_remb_unittest.cc 38 process_thread_.reset(new NiceMock<MockProcessThread>);
42 rtc::scoped_ptr<MockProcessThread> process_thread_; member in class:webrtc::ViERembTest
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
transport_feedback_adapter.cc 35 process_thread_(process_thread),
42 process_thread_->DeRegisterModule(bitrate_estimator_.get());
49 process_thread_->RegisterModule(rbe);
transport_feedback_adapter.h 59 ProcessThread* const process_thread_; member in class:webrtc::TransportFeedbackAdapter
transport_feedback_adapter_unittest.cc 43 new RtcpBandwidthObserverAdapter(this), &clock_, &process_thread_));
46 EXPECT_CALL(process_thread_, RegisterModule(bitrate_estimator_)).Times(1);
51 EXPECT_CALL(process_thread_, DeRegisterModule(bitrate_estimator_)).Times(1);
114 MockProcessThread process_thread_; member in class:webrtc::test::TransportFeedbackAdapterTest
  /external/webrtc/webrtc/call/
congestion_controller.cc 163 process_thread_(process_thread),
185 process_thread_->DeRegisterModule(bitrate_controller_.get());
186 process_thread_->DeRegisterModule(remote_bitrate_estimator_.get());
187 process_thread_->DeRegisterModule(remote_estimator_proxy_.get());
242 Clock::GetRealTimeClock(), process_thread_));
congestion_controller.h 81 ProcessThread* const process_thread_; member in class:webrtc::CongestionController
  /external/webrtc/webrtc/audio/
audio_send_stream_unittest.cc 56 process_thread_(ProcessThread::Create("AudioTestThread")),
57 congestion_controller_(process_thread_.get(),
163 rtc::scoped_ptr<ProcessThread> process_thread_; member in struct:webrtc::test::__anon49573::ConfigHelper
audio_receive_stream_unittest.cc 69 congestion_controller_(&process_thread_,
155 testing::NiceMock<MockProcessThread> process_thread_; member in struct:webrtc::test::__anon49572::ConfigHelper
  /external/webrtc/webrtc/modules/audio_device/test/
audio_device_test_api.cc 143 process_thread_ = ProcessThread::Create("ProcessThread");
144 process_thread_->Start();
237 process_thread_->RegisterModule(audio_device_);
248 if (process_thread_) {
249 process_thread_->DeRegisterModule(audio_device_);
250 process_thread_->Stop();
251 process_thread_.reset();
303 static rtc::scoped_ptr<ProcessThread> process_thread_; member in class:AudioDeviceAPITest
311 rtc::scoped_ptr<ProcessThread> AudioDeviceAPITest::process_thread_; member in class:AudioDeviceAPITest
    [all...]

Completed in 431 milliseconds