Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/oboe/src/common/
DAudioStreamBuilder.cpp201 Result AudioStreamBuilder::openStream(std::shared_ptr<AudioStream> &sharedStream) { in openStream() argument
202 sharedStream.reset(); in openStream()
210 sharedStream.reset(streamptr); in openStream()
212 streamptr->setWeakThis(sharedStream); in openStream()
/third_party/skia/third_party/externals/oboe/include/oboe/
DAudioStream.h487 void setWeakThis(std::shared_ptr<oboe::AudioStream> &sharedStream) { in setWeakThis() argument
488 mWeakThis = sharedStream; in setWeakThis()
/third_party/skia/third_party/externals/oboe/src/aaudio/
DAudioStreamAAudio.cpp80 static void oboe_aaudio_error_thread_proc_shared(std::shared_ptr<AudioStream> sharedStream, in oboe_aaudio_error_thread_proc_shared() argument
82 AudioStreamAAudio *oboeStream = reinterpret_cast<AudioStreamAAudio*>(sharedStream.get()); in oboe_aaudio_error_thread_proc_shared()
114 std::shared_ptr<AudioStream> sharedStream = oboeStream->lockWeakThis(); in internalErrorCallback() local
122 } else if (sharedStream) { in internalErrorCallback()
124 std::thread t(oboe_aaudio_error_thread_proc_shared, sharedStream, in internalErrorCallback()