HomeSort by relevance Sort by last modified time
    Searched refs:WatchDog (Results 1 - 9 of 9) 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/common/device-side/util/src/com/android/compatibility/common/util/
WatchDog.java 28 public class WatchDog implements Runnable {
29 private static final String TAG = WatchDog.class.getSimpleName();
36 public WatchDog(long timeoutInMilliSecs) {
40 public WatchDog(long timeoutInMilliSecs, TimeoutCallback callback) {
84 Assert.assertTrue("Watchdog timed-out", success);
96 * Called by the Watchdog when it has timed out.
  /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 21 import android.cts.util.WatchDog;
66 private WatchDog mWatchDog;
115 mWatchDog = new WatchDog(BROWSER_POST_TIMEOUT_IN_MS);
  /art/dex2oat/
dex2oat.cc 616 // The primary goal of the watchdog is to prevent stuck build servers
619 class WatchDog {
620 // WatchDog defines its own CHECK_PTHREAD_CALL to avoid using LOG which uses locks
635 explicit WatchDog(bool is_watch_dog_enabled) {
648 ~WatchDog() {
666 WatchDog* self = reinterpret_cast<WatchDog*>(arg);
728 const unsigned int WatchDog::kWatchDogTimeoutSeconds;
    [all...]
  /external/deqp/framework/common/
tcuCommandLine.cpp 63 DE_DECLARE_COMMAND_LINE_OPT(WatchDog, bool);
143 << Option<WatchDog> (DE_NULL, "deqp-watchdog", "Enable test watchdog", s_enableNames, "disable")
780 bool CommandLine::isWatchDogEnabled (void) const { return m_cmdLine.getOption<opt::WatchDog>(); }

Completed in 574 milliseconds