Home
last modified time | relevance | path

Searched refs:getXRunCount (Results 1 – 15 of 15) sorted by relevance

/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/
DOboeAudioStream.java222 public int getXRunCount() { in getXRunCount() method in OboeAudioStream
223 return getXRunCount(streamIndex); in getXRunCount()
225 public native int getXRunCount(int streamIndex); in getXRunCount() method in OboeAudioStream
DAudioStreamBase.java34 status.xRunCount = getXRunCount(); in getStreamStatus()
173 public abstract int getXRunCount(); in getXRunCount() method in AudioStreamBase
DAnalyzerActivity.java108 report.append(String.format("in.xruns = %d\n", inStream.getXRunCount())); in getCommonTestReport()
118 report.append(String.format("out.xruns = %d\n", outStream.getXRunCount())); in getCommonTestReport()
DAutoGlitchActivity.java223 inXRuns = mAudioInputTester.getCurrentAudioStream().getXRunCount(); in testConfiguration()
224 outXRuns = mAudioOutTester.getCurrentAudioStream().getXRunCount(); in testConfiguration()
/third_party/skia/third_party/externals/oboe/src/common/
DFilterAudioStream.h158 ResultWithValue<int32_t> getXRunCount() const override { in getXRunCount() function
159 return mChildStream->getXRunCount(); in getXRunCount()
DLatencyTuner.cpp56 auto xRunCountResult = mStream.getXRunCount(); in tune()
DUtilities.cpp194 <<"XRunCount: "<<stream->getXRunCount()<<std::endl in convertToText()
/third_party/skia/third_party/externals/oboe/samples/hello-oboe/src/main/cpp/
DLatencyTuningCallback.cpp30 auto underrunCountResult = oboeStream->getXRunCount(); in onAudioReady()
/third_party/skia/third_party/externals/oboe/src/opensles/
DAudioStreamBuffered.h52 ResultWithValue<int32_t> getXRunCount() const override { in getXRunCount() function
/third_party/skia/third_party/externals/oboe/src/aaudio/
DAudioStreamAAudio.h71 ResultWithValue<int32_t> getXRunCount() const override;
DAudioStreamAAudio.cpp587 ResultWithValue<int32_t> AudioStreamAAudio::getXRunCount() const { in getXRunCount() function in oboe::AudioStreamAAudio
/third_party/skia/third_party/externals/oboe/tests/
DtestStreamClosedMethods.cpp189 auto i = mStream->getXRunCount(); in TEST_F()
190 ASSERT_EQ(mStream->getXRunCount(), i); in TEST_F()
/third_party/skia/third_party/externals/oboe/include/oboe/
DAudioStream.h194 virtual ResultWithValue<int32_t> getXRunCount() const { in getXRunCount() function
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/cpp/
Djni-bridge.cpp366 auto oboeResult = oboeStream->getXRunCount(); in Java_com_google_sample_oboe_manualtest_OboeAudioStream_getXRunCount()
/third_party/skia/third_party/externals/oboe/docs/
DFullGuide.md339 so you can still reference the underlying stream (e.g.`getXRunCount()`).
345 …e the underlying stream should not be called (e.g. `getTimestamp()`, `getXRunCount()`, `read()`, `…