Home
last modified time | relevance | path

Searched refs:echo_path (Results 1 – 10 of 10) sorted by relevance

/external/webrtc/src/modules/audio_processing/
Decho_control_mobile_impl.cc196 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()
Decho_control_mobile_impl.h44 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/
Dtest-shell-service.c7 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()
Dtest-service.c375 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/
Decho_control_mobile.h186 const void* echo_path,
205 void* echo_path,
/external/webrtc/src/modules/audio_processing/aecm/
Decho_control_mobile.c644 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()
Daecm_core.h265 void WebRtcAecm_InitEchoPathCore(AecmCore_t* aecm, const WebRtc_Word16* echo_path);
Daecm_core.c340 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/
Daudio_processing.h384 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/
Dprocess_test.cc476 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()