HomeSort by relevance Sort by last modified time
    Searched defs:watchDog (Results 1 - 2 of 2) sorted by null

  /cts/suite/cts/deviceTests/opengl/src/com/android/cts/opengl/primitive/
GLPrimitiveActivity.java 18 import android.cts.util.WatchDog;
122 private class Worker extends Thread implements WatchDog.TimeoutCallback {
124 private WatchDog watchDog;
137 // Creates a watchdog to ensure a iteration doesn't exceed the timeout.
138 watchDog = new WatchDog(mTimeout, this);
159 watchDog.start();
162 watchDog.stop();
  /cts/suite/cts/deviceTests/opengl/src/com/android/cts/opengl/reference/
GLGameActivity.java 21 import android.cts.util.WatchDog;
100 private class Worker extends Thread implements WatchDog.TimeoutCallback {
102 private WatchDog watchDog;
117 // Creates a watchdog to ensure a iteration doesn't exceed the timeout.
118 watchDog = new WatchDog(mTimeout, this);
119 watchDog.start();
134 watchDog.stop();

Completed in 334 milliseconds