Home
last modified time | relevance | path

Searched refs:aaudio_result_t (Results 1 – 21 of 21) sorted by relevance

/external/drrickorang/LoopbackApp/app/src/main/cpp/lb2/oboe/src/aaudio/
DAAudioLoader.h69 aaudio_result_t (*createStreamBuilder)(AAudioStreamBuilder **builder);
71 aaudio_result_t (*builder_openStream)(AAudioStreamBuilder *builder,
96 aaudio_result_t (*stream_read)(AAudioStream* stream,
101 aaudio_result_t (*stream_write)(AAudioStream *stream,
106 aaudio_result_t (*stream_waitForStateChange)(AAudioStream *stream,
111 aaudio_result_t (*stream_getTimestamp)(AAudioStream *stream,
DAAudioLoader.cpp47 createStreamBuilder = (aaudio_result_t (*)(AAudioStreamBuilder **builder)) in open()
50 builder_openStream = (aaudio_result_t (*)(AAudioStreamBuilder *builder, in open()
84 stream_read = (aaudio_result_t (*)(AAudioStream *stream, in open()
90 stream_write = (aaudio_result_t (*)(AAudioStream *stream, in open()
97 stream_waitForStateChange = (aaudio_result_t (*)(AAudioStream *stream, in open()
104 stream_getTimestamp = (aaudio_result_t (*)(AAudioStream *stream, in open()
/external/drrickorang/LoopbackApp/app/src/main/cpp/lb2/
Dsound_system_aaudio.cpp60 aaudio_result_t result = mAAudio->stream_close(mAAStream); in ~Stream()
72 aaudio_result_t result = mAAudio->stream_read( in read()
82 aaudio_result_t result = mAAudio->stream_setBufferSize(mAAStream, numFrames); in setBufferFrameCount()
91 aaudio_result_t result = mAAudio->stream_requestStart(mAAStream); in start()
100 aaudio_result_t result = mAAudio->stream_requestStop(mAAStream); in stop()
153 aaudio_result_t result = mAAudio->builder_delete(mAABuilder); in ~StreamBuilder()
162 aaudio_result_t result = mAAudio->builder_openStream(mAABuilder, &stream); in makeStream()
173 aaudio_result_t result = AAudioLoader::getInstance()->createStreamBuilder(&builder); in makeStreamBuilder()
205 using ErrorCallback = std::function<void(aaudio_result_t)>;
234 aaudio_result_t error);
[all …]
/external/oboe/src/aaudio/
DAAudioLoader.h32 typedef int32_t aaudio_result_t; typedef
48 aaudio_result_t error);
57 #define AAUDIO_OK static_cast<aaudio_result_t>(Result::OK)
58 #define AAUDIO_ERROR_TIMEOUT static_cast<aaudio_result_t>(Result::ErrorTimeout)
DAAudioExtensions.h36 #define AAUDIO_ERROR_UNAVAILABLE static_cast<aaudio_result_t>(Result::ErrorUnavailable)
127 aaudio_result_t loadSymbols() { in loadSymbols()
DAudioStreamAAudio.h100 aaudio_result_t error);
DAudioStreamAAudio.cpp114 aaudio_result_t error) { in internalErrorCallback()
309 mLibLoader->convertResultToText(static_cast<aaudio_result_t>(result))); in open()
483 aaudio_result_t result = AAUDIO_OK; in waitForStateChange()
DAAudioLoader.cpp255 ASSERT_INT32(aaudio_result_t);
/external/webrtc/modules/audio_device/android/
Daaudio_wrapper.cc20 aaudio_result_t result = (op); \
28 aaudio_result_t result = (op); \
91 aaudio_result_t error) { in ErrorCallback()
214 aaudio_result_t result = AAudioStream_getTimestamp( in EstimateLatencyMillis()
247 aaudio_result_t buffer_size = AAudioStream_getBufferSizeInFrames(stream_); in IncreaseOutputBufferSize()
275 aaudio_result_t cleared_frames = 0; in ClearInputStream()
Daaudio_recorder.h80 void OnErrorCallback(aaudio_result_t error) override;
Daaudio_player.h86 void OnErrorCallback(aaudio_result_t error) override;
Daaudio_wrapper.h36 virtual void OnErrorCallback(aaudio_result_t error) = 0;
Daaudio_player.cc135 void AAudioPlayer::OnErrorCallback(aaudio_result_t error) { in OnErrorCallback()
Daaudio_recorder.cc135 void AAudioRecorder::OnErrorCallback(aaudio_result_t error) { in OnErrorCallback()
/external/webrtc/sdk/android/src/jni/audio_device/
Daaudio_wrapper.cc19 aaudio_result_t result = (op); \
27 aaudio_result_t result = (op); \
92 aaudio_result_t error) { in ErrorCallback()
214 aaudio_result_t result = AAudioStream_getTimestamp( in EstimateLatencyMillis()
247 aaudio_result_t buffer_size = AAudioStream_getBufferSizeInFrames(stream_); in IncreaseOutputBufferSize()
275 aaudio_result_t cleared_frames = 0; in ClearInputStream()
Daaudio_recorder.h82 void OnErrorCallback(aaudio_result_t error) override;
Daaudio_player.h90 void OnErrorCallback(aaudio_result_t error) override;
Daaudio_wrapper.h36 virtual void OnErrorCallback(aaudio_result_t error) = 0;
Daaudio_recorder.cc147 void AAudioRecorder::OnErrorCallback(aaudio_result_t error) { in OnErrorCallback()
Daaudio_player.cc151 void AAudioPlayer::OnErrorCallback(aaudio_result_t error) { in OnErrorCallback()
/external/oboe/tests/
DtestAAudio.cpp38 aaudio_result_t result = mAAudioLoader->createStreamBuilder(&mBuilder); in createBuilder()
45 aaudio_result_t result = mAAudioLoader->builder_openStream(mBuilder, &stream); in openCloseStream()