HomeSort by relevance Sort by last modified time
    Searched refs:timeOutMs (Results 1 - 8 of 8) sorted by null

  /cts/tests/camera/src/android/hardware/camera2/cts/
Camera2SurfaceViewCtsActivity.java 54 public boolean waitForSurfaceSizeChanged(int timeOutMs, int expectWidth, int expectHeight) {
55 if (timeOutMs <= 0 || expectWidth <= 0 || expectHeight <= 0) {
60 timeOutMs, expectWidth, expectHeight));
69 int waitTimeMs = timeOutMs;
75 Log.e(TAG, "Wait for surface change timed out after " + timeOutMs + " ms");
97 public boolean waitForSurfaceState(int timeOutMs, boolean valid) {
98 if (timeOutMs <= 0) {
100 String.format("timeout(%d) should be a positive number", timeOutMs));
109 int waitTimeMs = timeOutMs;
115 Log.e(TAG, "Wait for surface state " + valid + " timed out after " + timeOutMs + " ms")
    [all...]
SurfaceViewPreviewTest.java 661 int timeOutMs) {
666 timeout(timeOutMs).atLeast(expectResultCount))
692 timeout(timeOutMs).atLeast(expectResultCount))
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
Camera2SurfaceViewActivity.java 57 public boolean waitForSurfaceSizeChanged(int timeOutMs, int expectWidth, int expectHeight) {
58 if (timeOutMs <= 0 || expectWidth <= 0 || expectHeight <= 0) {
63 timeOutMs, expectWidth, expectHeight));
72 int waitTimeMs = timeOutMs;
78 Log.e(TAG, "Wait for surface change timed out after " + timeOutMs + " ms");
  /cts/tests/tests/media/src/android/media/cts/
MediaSyncTest.java 223 final int timeOutMs = 10000;
224 boolean completed = runCheckAudioBuffer(INPUT_RESOURCE_ID, timeOutMs);
233 private boolean runCheckAudioBuffer(int inputResourceId, int timeOutMs) {
269 condition.wait(timeOutMs);
280 final int timeOutMs = 5000;
281 boolean completed = runFlush(INPUT_RESOURCE_ID, timeOutMs);
287 private boolean runFlush(int inputResourceId, int timeOutMs) {
336 condition.wait(timeOutMs);
348 false /* audio */, true /* video */, 10000 /* timeOutMs */);
362 true /* audio */, false /* video */, 10000 /* timeOutMs */);
    [all...]
DecodeAccuracyTestBase.java 183 Surface surface, int numOfTotalFrames, long timeOutMs) {
194 && (SystemClock.elapsedRealtime() - loopStart < timeOutMs)) {
    [all...]
DecoderTest.java     [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/testcases/
Camera2MultiViewTestCase.java 263 * @param timeOutMs The timeout value for the wait
266 protected SurfaceTexture getAvailableSurfaceTexture(long timeOutMs, TextureView view) {
267 long waitTime = timeOutMs;
278 Log.w(TAG, "Wait for SurfaceTexture available timed out after " + timeOutMs + "ms");
319 public boolean waitForPreviewDone(long timeOutMs) {
320 if (!mPreviewDone.block(timeOutMs)) {
322 Log.w(TAG, "waitForPreviewDone timed out after " + timeOutMs + "ms");
  /frameworks/base/core/java/android/net/
ConnectivityManager.java     [all...]

Completed in 291 milliseconds