Searched refs:aaudio_result_t (Results 1 – 21 of 21) sorted by relevance
/external/drrickorang/LoopbackApp/app/src/main/cpp/lb2/oboe/src/aaudio/ |
D | AAudioLoader.h | 69 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,
|
D | AAudioLoader.cpp | 47 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/ |
D | sound_system_aaudio.cpp | 60 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/ |
D | AAudioLoader.h | 32 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)
|
D | AAudioExtensions.h | 36 #define AAUDIO_ERROR_UNAVAILABLE static_cast<aaudio_result_t>(Result::ErrorUnavailable) 127 aaudio_result_t loadSymbols() { in loadSymbols()
|
D | AudioStreamAAudio.h | 100 aaudio_result_t error);
|
D | AudioStreamAAudio.cpp | 114 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()
|
D | AAudioLoader.cpp | 255 ASSERT_INT32(aaudio_result_t);
|
/external/webrtc/modules/audio_device/android/ |
D | aaudio_wrapper.cc | 20 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()
|
D | aaudio_recorder.h | 80 void OnErrorCallback(aaudio_result_t error) override;
|
D | aaudio_player.h | 86 void OnErrorCallback(aaudio_result_t error) override;
|
D | aaudio_wrapper.h | 36 virtual void OnErrorCallback(aaudio_result_t error) = 0;
|
D | aaudio_player.cc | 135 void AAudioPlayer::OnErrorCallback(aaudio_result_t error) { in OnErrorCallback()
|
D | aaudio_recorder.cc | 135 void AAudioRecorder::OnErrorCallback(aaudio_result_t error) { in OnErrorCallback()
|
/external/webrtc/sdk/android/src/jni/audio_device/ |
D | aaudio_wrapper.cc | 19 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()
|
D | aaudio_recorder.h | 82 void OnErrorCallback(aaudio_result_t error) override;
|
D | aaudio_player.h | 90 void OnErrorCallback(aaudio_result_t error) override;
|
D | aaudio_wrapper.h | 36 virtual void OnErrorCallback(aaudio_result_t error) = 0;
|
D | aaudio_recorder.cc | 147 void AAudioRecorder::OnErrorCallback(aaudio_result_t error) { in OnErrorCallback()
|
D | aaudio_player.cc | 151 void AAudioPlayer::OnErrorCallback(aaudio_result_t error) { in OnErrorCallback()
|
/external/oboe/tests/ |
D | testAAudio.cpp | 38 aaudio_result_t result = mAAudioLoader->createStreamBuilder(&mBuilder); in createBuilder() 45 aaudio_result_t result = mAAudioLoader->builder_openStream(mBuilder, &stream); in openCloseStream()
|