Home
last modified time | relevance | path

Searched refs:ManagedStream (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/third_party/externals/oboe/apps/fxlab/app/src/main/cpp/
DDuplexEngine.h56 oboe::ManagedStream inStream;
58 oboe::ManagedStream outStream;
/third_party/skia/third_party/externals/oboe/docs/
DGettingStarted.md175 Declare a ManagedStream. Make sure it is declared in an appropriate scope (e.g.the member of a mana…
177 oboe::ManagedStream managedStream;
220 ManagedStream mStream;
225 It is preferable to let the `ManagedStream` object go out of scope (or be explicitly deleted) when …
236 // The old ManagedStream is automatically closed and deleted
239 The `ManagedStream` takes care of its own closure and destruction. If used in an
242 the `ManagedStream` (its enclosing class) goes out of scope whenever the app is no longer
248 The following class is a complete implementation of a `ManagedStream`, which
288 oboe::ManagedStream outStream;
309 For more examples on how to use `ManagedStream` look in the [samples](https://github.com/google/obo…
/third_party/skia/third_party/externals/oboe/include/oboe/
DAudioStreamBuilder.h28 using ManagedStream = std::unique_ptr<AudioStream, StreamDeleterFunctor>; variable
416 Result openManagedStream(ManagedStream &stream);
/third_party/skia/third_party/externals/oboe/samples/iolib/
DREADME.md33 * Creation and lifetime management of an Oboe audio stream (`ManagedStream`)
/third_party/skia/third_party/externals/oboe/src/common/
DAudioStreamBuilder.cpp189 Result AudioStreamBuilder::openManagedStream(oboe::ManagedStream &stream) { in openManagedStream()