Searched refs:echo_path (Results 1 – 10 of 10) sorted by relevance
/external/webrtc/src/modules/audio_processing/ |
D | echo_control_mobile_impl.cc | 196 int EchoControlMobileImpl::SetEchoPath(const void* echo_path, in SetEchoPath() argument 199 if (echo_path == NULL) { in SetEchoPath() 210 memcpy(external_echo_path_, echo_path, size_bytes); in SetEchoPath() 215 int EchoControlMobileImpl::GetEchoPath(void* echo_path, in GetEchoPath() argument 218 if (echo_path == NULL) { in GetEchoPath() 231 if (WebRtcAecm_GetEchoPath(my_handle, echo_path, size_bytes) != 0) { in GetEchoPath()
|
D | echo_control_mobile_impl.h | 44 virtual int SetEchoPath(const void* echo_path, size_t size_bytes); 45 virtual int GetEchoPath(void* echo_path, size_t size_bytes) const;
|
/external/dbus/test/ |
D | test-shell-service.c | 7 static const char* echo_path = "/org/freedesktop/TestSuite"; variable 44 if (!dbus_connection_get_object_path_data (connection, echo_path, (void **)&d)) in handle_echo() 155 echo_path, in main() 162 if (!dbus_connection_get_object_path_data (connection, echo_path, &d)) in main()
|
D | test-service.c | 375 static const char* echo_path = "/org/freedesktop/TestSuite" ; variable 457 echo_path, in main() 464 if (!dbus_connection_get_object_path_data (connection, echo_path, &d)) in main()
|
/external/webrtc/src/modules/audio_processing/aecm/interface/ |
D | echo_control_mobile.h | 186 const void* echo_path, 205 void* echo_path,
|
/external/webrtc/src/modules/audio_processing/aecm/ |
D | echo_control_mobile.c | 644 const void* echo_path, in WebRtcAecm_InitEchoPath() argument 648 const WebRtc_Word16* echo_path_ptr = echo_path; in WebRtcAecm_InitEchoPath() 650 if ((aecm == NULL) || (echo_path == NULL)) in WebRtcAecm_InitEchoPath() 673 void* echo_path, in WebRtcAecm_GetEchoPath() argument 677 WebRtc_Word16* echo_path_ptr = echo_path; in WebRtcAecm_GetEchoPath() 679 if ((aecm == NULL) || (echo_path == NULL)) in WebRtcAecm_GetEchoPath()
|
D | aecm_core.h | 265 void WebRtcAecm_InitEchoPathCore(AecmCore_t* aecm, const WebRtc_Word16* echo_path);
|
D | aecm_core.c | 340 void WebRtcAecm_InitEchoPathCore(AecmCore_t* aecm, const WebRtc_Word16* echo_path) in WebRtcAecm_InitEchoPathCore() argument 345 memcpy(aecm->channelStored, echo_path, sizeof(WebRtc_Word16) * PART_LEN1); in WebRtcAecm_InitEchoPathCore() 347 memcpy(aecm->channelAdapt16, echo_path, sizeof(WebRtc_Word16) * PART_LEN1); in WebRtcAecm_InitEchoPathCore()
|
/external/webrtc/src/modules/audio_processing/interface/ |
D | audio_processing.h | 384 virtual int SetEchoPath(const void* echo_path, size_t size_bytes) = 0; 385 virtual int GetEchoPath(void* echo_path, size_t size_bytes) const = 0;
|
/external/webrtc/src/modules/audio_processing/test/ |
D | process_test.cc | 476 scoped_array<char> echo_path(new char[path_size]); in void_main() local 477 ASSERT_EQ(path_size, fread(echo_path.get(), in void_main() 482 apm->echo_control_mobile()->SetEchoPath(echo_path.get(), in void_main() 877 scoped_array<char> echo_path(new char[path_size]); in void_main() local 878 apm->echo_control_mobile()->GetEchoPath(echo_path.get(), path_size); in void_main() 879 ASSERT_EQ(path_size, fwrite(echo_path.get(), in void_main()
|