Home
last modified time | relevance | path

Searched refs:StartAecDump (Results 1 – 11 of 11) sorted by relevance

/external/webrtc/talk/media/base/
Dmediaengine.h106 virtual bool StartAecDump(rtc::PlatformFile file) = 0;
188 virtual bool StartAecDump(rtc::PlatformFile file) { in StartAecDump() function
189 return voice_.StartAecDump(file); in StartAecDump()
Dfakemediaengine.h765 bool StartAecDump(rtc::PlatformFile file) { return false; } in StartAecDump() function
/external/webrtc/talk/app/webrtc/
Dpeerconnectionfactory.cc228 bool PeerConnectionFactory::StartAecDump(rtc::PlatformFile file) { in StartAecDump() function in webrtc::PeerConnectionFactory
230 return channel_manager_->StartAecDump(file); in StartAecDump()
Dpeerconnectionfactoryproxy.h65 PROXY_METHOD1(bool, StartAecDump, rtc::PlatformFile) in PROXY_METHOD1()
Dpeerconnectionfactory.h85 bool StartAecDump(rtc::PlatformFile file) override;
Dpeerconnectioninterface.h566 virtual bool StartAecDump(rtc::PlatformFile file) = 0;
/external/webrtc/talk/media/webrtc/
Dwebrtcvoiceengine.h98 bool StartAecDump(rtc::PlatformFile file);
122 void StartAecDump(const std::string& filename);
Dwebrtcvoiceengine.cc802 StartAecDump(kAecDumpByAudioOptionFilename); in ApplyOptions()
1014 bool WebRtcVoiceEngine::StartAecDump(rtc::PlatformFile file) { in StartAecDump() function in cricket::WebRtcVoiceEngine
1034 void WebRtcVoiceEngine::StartAecDump(const std::string& filename) { in StartAecDump() function in cricket::WebRtcVoiceEngine
/external/webrtc/talk/session/media/
Dchannelmanager.h166 bool StartAecDump(rtc::PlatformFile file);
Dchannelmanager.cc553 bool ChannelManager::StartAecDump(rtc::PlatformFile file) { in StartAecDump() function in cricket::ChannelManager
555 Bind(&MediaEngineInterface::StartAecDump, media_engine_.get(), file)); in StartAecDump()
/external/webrtc/talk/app/webrtc/java/jni/
Dpeerconnection_jni.cc1271 return factory->StartAecDump(file); in JOW()