/external/webrtc/webrtc/voice_engine/include/ |
voe_audio_processing.h | 191 virtual int StartDebugRecording(const char* fileNameUTF8) = 0; 195 virtual int StartDebugRecording(FILE* file_handle) = 0;
|
/external/webrtc/webrtc/voice_engine/ |
voe_audio_processing_impl.h | 82 int StartDebugRecording(const char* fileNameUTF8) override; 83 int StartDebugRecording(FILE* file_handle) override;
|
voe_audio_processing_impl.cc | 919 int VoEAudioProcessingImpl::StartDebugRecording(const char* fileNameUTF8) { 921 "StartDebugRecording()"); 927 return _shared->audio_processing()->StartDebugRecording(fileNameUTF8); 930 int VoEAudioProcessingImpl::StartDebugRecording(FILE* file_handle) { 932 "StartDebugRecording()"); 938 return _shared->audio_processing()->StartDebugRecording(file_handle); [all...] |
/external/webrtc/webrtc/modules/audio_processing/ |
audio_processing_impl.h | 60 int StartDebugRecording(const char filename[kMaxFilenameSize]) override; 61 int StartDebugRecording(FILE* handle) override;
|
audio_processing_impl.cc | [all...] |
/external/webrtc/webrtc/modules/audio_processing/include/ |
mock_audio_processing.h | 253 MOCK_METHOD1(StartDebugRecording, 255 MOCK_METHOD1(StartDebugRecording,
|
audio_processing.h | 420 virtual int StartDebugRecording(const char filename[kMaxFilenameSize]) = 0; 424 virtual int StartDebugRecording(FILE* handle) = 0; [all...] |
/external/webrtc/webrtc/test/ |
mock_voice_engine.h | 84 MOCK_METHOD1(StartDebugRecording, int(const char* fileNameUTF8)); 85 MOCK_METHOD1(StartDebugRecording, int(FILE* file_handle));
|
/external/webrtc/talk/media/webrtc/ |
fakewebrtcvoiceengine.h | 117 WEBRTC_STUB(StartDebugRecording, (const char filename[kMaxFilenameSize])); 118 WEBRTC_STUB(StartDebugRecording, (FILE* handle)); 752 WEBRTC_STUB(StartDebugRecording, (const char* fileNameUTF8)); 753 WEBRTC_STUB(StartDebugRecording, (FILE* handle));
|
webrtcvoiceengine.cc | [all...] |
/external/webrtc/webrtc/voice_engine/test/auto_test/standard/ |
audio_processing_test.cc | 375 EXPECT_EQ(0, voe_apm_->StartDebugRecording(output_file.c_str()));
|
/external/webrtc/webrtc/modules/audio_processing/test/ |
audio_processing_unittest.cc | [all...] |
debug_dump_test.cc | 184 apm_->StartDebugRecording(dump_file_name_.c_str());
|
process_test.cc | 438 ASSERT_EQ(apm->kNoError, apm->StartDebugRecording(argv[i])); [all...] |
/external/webrtc/webrtc/voice_engine/test/cmd_test/ |
voe_cmd_test.cc | 800 apm->StartDebugRecording(kDebugFileName);
|