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

  /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/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.
  /art/dex2oat/
dex2oat.cc 389 // The primary goal of the watchdog is to prevent stuck build servers
392 class WatchDog {
393 // WatchDog defines its own CHECK_PTHREAD_CALL to avoid using LOG which uses locks
408 explicit WatchDog(bool is_watch_dog_enabled) {
421 ~WatchDog() {
439 WatchDog* self = reinterpret_cast<WatchDog*>(arg);
481 // watchdog (PackageManagerService.WATCHDOG_TIMEOUT, 10 minutes), so that dex2oat will abort
482 // itself before that watchdog would take down the system server.
    [all...]

Completed in 281 milliseconds