HomeSort by relevance Sort by last modified time
    Searched refs:WatchDog (Results 1 - 8 of 8) 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;
105 RenderCompletionListener listener, WatchDog watchDog) {
109 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();
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/AMD/Styx/AcpiTables/
Gtdt.c 144 EFI_ACPI_5_1_GTDT_SBSA_GENERIC_WATCHDOG_STRUCTURE WatchDog;
  /art/dex2oat/
dex2oat.cc 481 // The primary goal of the watchdog is to prevent stuck build servers
484 class WatchDog {
485 // WatchDog defines its own CHECK_PTHREAD_CALL to avoid using LOG which uses locks
500 explicit WatchDog(int64_t timeout_in_milliseconds)
516 ~WatchDog() {
539 // watchdog (PackageManagerService.WATCHDOG_TIMEOUT, 10 minutes), so that dex2oat will abort
540 // itself before that watchdog would take down the system server.
548 WatchDog* self = reinterpret_cast<WatchDog*>(arg);
563 // TODO: Use a double watchdog timeout, so we can enable this on-device
    [all...]
  /external/deqp/framework/common/
tcuCommandLine.cpp 66 DE_DECLARE_COMMAND_LINE_OPT(WatchDog, bool);
155 << Option<WatchDog> (DE_NULL, "deqp-watchdog", "Enable test watchdog", s_enableNames, "disable")
779 bool CommandLine::isWatchDogEnabled (void) const { return m_cmdLine.getOption<opt::WatchDog>(); }

Completed in 1023 milliseconds