HomeSort by relevance Sort by last modified time
    Searched refs:Watchdog (Results 1 - 25 of 36) sorted by null

1 2

  /external/llvm/include/llvm/Support/
Watchdog.h 1 //===--- Watchdog.h - Watchdog timer ----------------------------*- C++ -*-===//
10 // This file declares the llvm::sys::Watchdog class.
26 class Watchdog {
28 Watchdog(unsigned int seconds);
29 ~Watchdog();
32 Watchdog(const Watchdog &other) = delete;
33 Watchdog &operator=(const Watchdog &other) = delete
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
Profile.java 39 // This is a watchdog entry for one thread.
52 // This is a watchdog thread which dumps stacks of other threads periodically.
53 private static Watchdog sWatchdog = new Watchdog();
55 private static class Watchdog {
62 synchronized (Watchdog.this) {
70 public Watchdog() {
71 mHandlerThread = new HandlerThread("Watchdog Handler",
  /cts/tests/tests/media/src/android/media/cts/
MediaRandomTest.java 98 * This is a watchdog used to stop the process if it hasn't been pinged
101 * Watchdog w = new Watchdog(10000); // 10 seconds.
102 * w.start(); // start the watchdog.
108 * w.end(); // ask the watchdog to stop.
111 class Watchdog extends Thread {
116 public Watchdog(long timeoutMs) {
180 Watchdog watchdog = new Watchdog(5000) local
265 Watchdog watchdog = new Watchdog(5000); local
    [all...]
  /external/okhttp/okio/okio/src/main/java/okio/
AsyncTimeout.java 27 * occurs. This method will be invoked by the shared watchdog thread so it
42 * The watchdog thread processes a linked list of pending timeouts, sorted in
48 * head is null until the watchdog thread is started.
58 /** If scheduled, this is the time that the watchdog should time this out. */
74 // Start the watchdog thread and create the head node when the first timeout is scheduled.
77 new Watchdog().start();
100 AsyncTimeout.class.notify(); // Wake up the watchdog when inserting at the front.
138 * Invoked by the watchdog thread when the time between calls to {@link
277 private static final class Watchdog extends Thread {
278 public Watchdog() {
    [all...]
  /frameworks/base/services/core/java/com/android/server/
Watchdog.java 47 public class Watchdog extends Thread {
48 static final String TAG = "Watchdog";
53 // Set this to true to have the watchdog record kernel thread stacks when it fires
79 static Watchdog sWatchdog;
176 synchronized (Watchdog.this) {
182 synchronized (Watchdog.this) {
204 private static final class BinderThreadMonitor implements Watchdog.Monitor {
215 public static Watchdog getInstance() {
217 sWatchdog = new Watchdog();
223 private Watchdog() {
    [all...]
NativeDaemonConnector.java 52 final class NativeDaemonConnector implements Runnable, Handler.Callback, Watchdog.Monitor {
NetworkManagementService.java 125 implements Watchdog.Monitor {
320 // Add ourself to the Watchdog monitors.
321 Watchdog.getInstance().addMonitor(this);
    [all...]
MountService.java 152 implements INativeDaemonConnectorCallbacks, Watchdog.Monitor {
    [all...]
  /external/llvm/lib/Support/
PrettyStackTrace.cpp 21 #include "llvm/Support/Watchdog.h"
48 sys::Watchdog W(5);
Android.mk 86 Watchdog.cpp \
  /frameworks/base/services/core/java/com/android/server/tv/
TvRemoteService.java 28 import com.android.server.Watchdog;
41 public class TvRemoteService extends SystemService implements Watchdog.Monitor {
67 Watchdog.getInstance().addMonitor(this);
  /frameworks/base/services/core/java/com/android/server/media/projection/
MediaProjectionManagerService.java 19 import com.android.server.Watchdog;
57 implements Watchdog.Monitor {
82 Watchdog.getInstance().addMonitor(this);
  /frameworks/base/services/core/java/com/android/server/am/
AppErrors.java 23 import com.android.server.Watchdog;
59 import static com.android.server.Watchdog.NATIVE_STACKS_OF_INTEREST;
465 Watchdog.getInstance().setActivityController(null);
745 Watchdog.getInstance().setActivityController(null);
    [all...]
ActivityStack.java 128 import com.android.server.Watchdog;
    [all...]
ActivityManagerService.java 53 import com.android.server.Watchdog;
374 implements Watchdog.Monitor, BatteryStatsImpl.BatteryCallback {
    [all...]
  /frameworks/base/services/core/java/com/android/server/media/
MediaSessionService.java 66 import com.android.server.Watchdog;
67 import com.android.server.Watchdog.Monitor;
124 Watchdog.getInstance().addMonitor(this);
    [all...]
MediaRouterService.java 19 import com.android.server.Watchdog;
65 implements Watchdog.Monitor {
94 Watchdog.getInstance().addMonitor(this);
    [all...]
  /frameworks/base/services/java/com/android/server/
SystemServer.java 609 final Watchdog watchdog = Watchdog.getInstance(); local
610 watchdog.init(context, mActivityManagerService);
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/commons/commons-exec/1.2/
commons-exec-1.2.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-exec/1.1/
commons-exec-1.1.jar 
  /frameworks/base/services/core/java/com/android/server/input/
InputManagerService.java 31 import com.android.server.Watchdog;
125 implements Watchdog.Monitor {
332 // Add ourself to the Watchdog monitors.
333 Watchdog.getInstance().addMonitor(this);
    [all...]
  /frameworks/base/services/core/java/com/android/server/power/
PowerManagerService.java 73 import com.android.server.Watchdog;
98 implements Watchdog.Monitor {
543 Watchdog.getInstance().addMonitor(this);
544 Watchdog.getInstance().addThread(mHandler);
    [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/okio/okio/1.6.0/
okio-1.6.0.jar 
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/venc/test/
venc_test.cpp     [all...]
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/venc/test/
venc_test.cpp     [all...]

Completed in 2289 milliseconds

1 2