OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DeRegisterModule
(Results
1 - 17
of
17
) sorted by null
/external/webrtc/webrtc/modules/utility/include/
process_thread.h
61
virtual void
DeRegisterModule
(Module* module) = 0;
/external/webrtc/webrtc/modules/utility/include/mock/
mock_process_thread.h
27
MOCK_METHOD1(
DeRegisterModule
, void(Module* module));
/external/webrtc/webrtc/call/
congestion_controller.cc
184
pacer_thread_->
DeRegisterModule
(pacer_.get());
185
process_thread_->
DeRegisterModule
(bitrate_controller_.get());
186
process_thread_->
DeRegisterModule
(remote_bitrate_estimator_.get());
187
process_thread_->
DeRegisterModule
(remote_estimator_proxy_.get());
call.cc
240
module_process_thread_->
DeRegisterModule
(call_stats_.get());
/external/webrtc/webrtc/modules/utility/source/
process_thread_impl.h
38
void
DeRegisterModule
(Module* module) override;
process_thread_impl.cc
69
// TODO(tommi): Since
DeRegisterModule
is currently being called from
98
// TODO(tommi): Since
DeRegisterModule
is currently being called from
101
// Since
DeRegisterModule
also checks thread_, we also need to hold the
161
void ProcessThreadImpl::
DeRegisterModule
(Module* module) {
175
//
DeRegisterModule
isn't being called on arbitrary threads, we can move the
process_thread_impl_unittest.cc
136
thread.
DeRegisterModule
(&module);
/external/webrtc/webrtc/modules/remote_bitrate_estimator/
transport_feedback_adapter.cc
42
process_thread_->
DeRegisterModule
(bitrate_estimator_.get());
transport_feedback_adapter_unittest.cc
51
EXPECT_CALL(process_thread_,
DeRegisterModule
(bitrate_estimator_)).Times(1);
/external/webrtc/webrtc/video/
video_capture_input.cc
62
module_process_thread_->
DeRegisterModule
(overuse_detector_.get());
vie_channel.cc
179
module_process_thread_->
DeRegisterModule
(
181
module_process_thread_->
DeRegisterModule
(vcm_);
182
module_process_thread_->
DeRegisterModule
(&vie_sync_);
187
module_process_thread_->
DeRegisterModule
(rtp_rtcp);
414
module_process_thread_->
DeRegisterModule
(rtp_rtcp_modules_[i]);
[
all
...]
vie_encoder.cc
170
module_process_thread_->
DeRegisterModule
(vcm_.get());
/external/webrtc/webrtc/voice_engine/
voe_base_impl.cc
660
shared_->process_thread()->
DeRegisterModule
(shared_->audio_device());
transmit_mixer.cc
224
_processThreadPtr->
DeRegisterModule
(&_monitorModule);
[
all
...]
channel.cc
[
all
...]
/external/webrtc/webrtc/modules/audio_device/test/
func_test_manager.cc
637
_processThread->
DeRegisterModule
(_audioDevice);
806
_processThread->
DeRegisterModule
(_audioDevice);
[
all
...]
audio_device_test_api.cc
249
process_thread_->
DeRegisterModule
(audio_device_);
[
all
...]
Completed in 687 milliseconds