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

  /cts/tests/tests/openglperf/src/android/openglperf/cts/
PlanetsSurfaceView.java 20 import android.cts.util.WatchDog;
24 private final WatchDog mWatchDog = new WatchDog(RENDERING_TIMEOUT);
PlanetsRenderer.java 20 import android.cts.util.WatchDog;
51 private final WatchDog mWatchDog;
103 RenderCompletionListener listener, WatchDog watchDog) {
107 mWatchDog = watchDog;
  /cts/libs/deviceutil/src/android/cts/util/
WatchDog.java 29 public class WatchDog implements Runnable {
30 private static final String TAG = "WatchDog";
37 public WatchDog(long timeoutInMilliSecs) {
41 public WatchDog(long timeoutInMilliSecs, TimeoutCallback callback) {
85 Assert.assertTrue("Watchdog timed-out", success);
97 * Called by the Watchdog when it has timed out.
  /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();
  /cts/suite/cts/deviceTests/browserbench/src/com/android/cts/browser/
BrowserBenchTest.java 20 import android.cts.util.WatchDog;
65 private WatchDog mWatchDog;
112 mWatchDog = new WatchDog(BROWSER_POST_TIMEOUT_IN_MS);
  /art/dex2oat/
dex2oat.cc 435 // The primary goal of the watchdog is to prevent stuck build servers
438 class WatchDog {
439 // WatchDog defines its own CHECK_PTHREAD_CALL to avoid using Log which uses locks
454 explicit WatchDog(bool is_watch_dog_enabled) {
467 ~WatchDog() {
485 WatchDog* self = reinterpret_cast<WatchDog*>(arg);
563 const unsigned int WatchDog::kWatchDogWarningSeconds;
564 const unsigned int WatchDog::kWatchDogTimeoutSeconds;
810 // Done with usage checks, enable watchdog if requeste
    [all...]

Completed in 288 milliseconds