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 19 import com.android.compatibility.common.util.WatchDog;
25 private final WatchDog mWatchDog = new WatchDog(RENDERING_TIMEOUT);
PlanetsRenderer.java 19 import com.android.compatibility.common.util.WatchDog;
52 private final WatchDog mWatchDog;
104 RenderCompletionListener listener, WatchDog watchDog) {
108 mWatchDog = watchDog;
  /cts/common/device-side/util/src/com/android/compatibility/common/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/tests/openglperf2/src/android/opengl2/cts/primitive/
GLPrimitiveActivity.java 16 import com.android.compatibility.common.util.WatchDog;
115 private class Worker extends Thread implements WatchDog.TimeoutCallback {
117 private WatchDog watchDog;
130 // Creates a watchdog to ensure a iteration doesn't exceed the timeout.
131 watchDog = new WatchDog(mTimeout, this);
140 watchDog.start();
143 watchDog.stop();
  /cts/tests/openglperf2/src/android/opengl2/cts/reference/
GLGameActivity.java 16 import com.android.compatibility.common.util.WatchDog;
101 private class Worker extends Thread implements WatchDog.TimeoutCallback {
103 private WatchDog watchDog;
118 // Creates a watchdog to ensure a iteration doesn't exceed the timeout.
119 watchDog = new WatchDog(mTimeout, this);
120 watchDog.start();
135 watchDog.stop();
  /art/dex2oat/
dex2oat.cc 444 // The primary goal of the watchdog is to prevent stuck build servers
447 class WatchDog {
448 // WatchDog defines its own CHECK_PTHREAD_CALL to avoid using LOG which uses locks
463 explicit WatchDog(int64_t timeout_in_milliseconds)
479 ~WatchDog() {
502 // watchdog (PackageManagerService.WATCHDOG_TIMEOUT, 10 minutes), so that dex2oat will abort
503 // itself before that watchdog would take down the system server.
511 WatchDog* self = reinterpret_cast<WatchDog*>(arg);
529 // TODO: Use a double watchdog timeout, so we can enable this on-device
    [all...]
  /external/deqp/framework/common/
tcuCommandLine.cpp 64 DE_DECLARE_COMMAND_LINE_OPT(WatchDog, bool);
151 << Option<WatchDog> (DE_NULL, "deqp-watchdog", "Enable test watchdog", s_enableNames, "disable")
810 bool CommandLine::isWatchDogEnabled (void) const { return m_cmdLine.getOption<opt::WatchDog>(); }

Completed in 140 milliseconds