Home
last modified time | relevance | path

Searched refs:StartRecordingMicrophone (Results 1 – 8 of 8) sorted by relevance

/external/webrtc/webrtc/voice_engine/include/
Dvoe_file.h126 virtual int StartRecordingMicrophone(const char* fileNameUTF8,
131 virtual int StartRecordingMicrophone(OutStream* stream,
/external/webrtc/webrtc/voice_engine/
Dvoe_file_impl.h76 int StartRecordingMicrophone(const char* fileNameUTF8,
80 int StartRecordingMicrophone(OutStream* stream,
Dvoe_file_impl.cc378 int VoEFileImpl::StartRecordingMicrophone(const char* fileNameUTF8, in StartRecordingMicrophone() function in webrtc::VoEFileImpl
391 if (_shared->transmit_mixer()->StartRecordingMicrophone(fileNameUTF8, in StartRecordingMicrophone()
412 int VoEFileImpl::StartRecordingMicrophone(OutStream* stream, in StartRecordingMicrophone() function in webrtc::VoEFileImpl
421 if (_shared->transmit_mixer()->StartRecordingMicrophone(stream, in StartRecordingMicrophone()
Dtransmit_mixer.h120 int StartRecordingMicrophone(const char* fileName,
123 int StartRecordingMicrophone(OutStream* stream,
Dtransmit_mixer.cc682 int TransmitMixer::StartRecordingMicrophone(const char* fileName, in StartRecordingMicrophone() function in webrtc::voe::TransmitMixer
761 int TransmitMixer::StartRecordingMicrophone(OutStream* stream, in StartRecordingMicrophone() function in webrtc::voe::TransmitMixer
/external/webrtc/webrtc/voice_engine/test/auto_test/standard/
Dfile_test.cc47 EXPECT_EQ(0, voe_file_->StartRecordingMicrophone(recording_filename.c_str()));
/external/webrtc/webrtc/test/
Dmock_voice_engine.h212 MOCK_METHOD3(StartRecordingMicrophone,
216 MOCK_METHOD2(StartRecordingMicrophone,
/external/webrtc/webrtc/voice_engine/test/cmd_test/
Dvoe_cmd_test.cc662 res = file->StartRecordingMicrophone(mic_filename.c_str()); in RunTest()