Searched refs:ManagedStream (Results 1 – 5 of 5) sorted by relevance
56 oboe::ManagedStream inStream;58 oboe::ManagedStream outStream;
175 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 deleted239 The `ManagedStream` takes care of its own closure and destruction. If used in an242 the `ManagedStream` (its enclosing class) goes out of scope whenever the app is no longer248 The following class is a complete implementation of a `ManagedStream`, which288 oboe::ManagedStream outStream;309 For more examples on how to use `ManagedStream` look in the [samples](https://github.com/google/obo…
28 using ManagedStream = std::unique_ptr<AudioStream, StreamDeleterFunctor>; variable416 Result openManagedStream(ManagedStream &stream);
33 * Creation and lifetime management of an Oboe audio stream (`ManagedStream`)
189 Result AudioStreamBuilder::openManagedStream(oboe::ManagedStream &stream) { in openManagedStream()