Home
last modified time | relevance | path

Searched refs:sharedStream (Results 1 – 3 of 3) sorted by relevance

/external/oboe/src/common/
DAudioStreamBuilder.cpp215 Result AudioStreamBuilder::openStream(std::shared_ptr<AudioStream> &sharedStream) { in openStream() argument
216 sharedStream.reset(); in openStream()
224 sharedStream.reset(streamptr); in openStream()
226 streamptr->setWeakThis(sharedStream); in openStream()
/external/oboe/include/oboe/
DAudioStream.h507 void setWeakThis(std::shared_ptr<oboe::AudioStream> &sharedStream) { in setWeakThis() argument
508 mWeakThis = sharedStream; in setWeakThis()
/external/oboe/src/aaudio/
DAudioStreamAAudio.cpp83 static void oboe_aaudio_error_thread_proc_shared(std::shared_ptr<AudioStream> sharedStream, in oboe_aaudio_error_thread_proc_shared() argument
85 AudioStreamAAudio *oboeStream = reinterpret_cast<AudioStreamAAudio*>(sharedStream.get()); in oboe_aaudio_error_thread_proc_shared()
130 std::shared_ptr<AudioStream> sharedStream = oboeStream->lockWeakThis(); in internalErrorCallback() local
138 } else if (sharedStream) { in internalErrorCallback()
140 std::thread t(oboe_aaudio_error_thread_proc_shared, sharedStream, oboeResult); in internalErrorCallback()