Lines Matching refs:oboe
31 bool oboe::OboeGlobals::mWorkaroundsEnabled = true;
33 namespace oboe { namespace
75 if (getDirection() == oboe::Direction::Output) { in build()
77 } else if (getDirection() == oboe::Direction::Input) { in build()
85 return (getSampleRate() == oboe::Unspecified || getSampleRate() == other.getSampleRate()) in isCompatible()
86 && (getFormat() == (AudioFormat)oboe::Unspecified || getFormat() == other.getFormat()) in isCompatible()
87 …&& (getFramesPerDataCallback() == oboe::Unspecified || getFramesPerDataCallback() == other.getFram… in isCompatible()
88 … && (getChannelCount() == oboe::Unspecified || getChannelCount() == other.getChannelCount()); in isCompatible()
126 if (getFormat() == oboe::AudioFormat::Unspecified) { in openStream()
129 if (getChannelCount() == oboe::Unspecified) { in openStream()
132 if (getSampleRate() == oboe::Unspecified) { in openStream()
135 if (getFramesPerDataCallback() == oboe::Unspecified) { in openStream()
203 Result AudioStreamBuilder::openManagedStream(oboe::ManagedStream &stream) { in openManagedStream()