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

  /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) LLVM_DELETED_FUNCTION;
33 Watchdog &operator=(const Watchdog &other) LLVM_DELETED_FUNCTION
    [all...]
  /external/chromium/base/threading/
watchdog.cc 5 #include "base/threading/watchdog.h"
14 Watchdog::Watchdog(const TimeDelta& duration,
32 // Notify watchdog thread, and wait for it to finish up.
33 Watchdog::~Watchdog() {
44 void Watchdog::Arm() {
48 void Watchdog::ArmSomeTimeDeltaAgo(const TimeDelta& time_delta) {
52 // Start clock for watchdog.
53 void Watchdog::ArmAtStartTime(const TimeTicks start_time)
    [all...]
watchdog.h 5 // The Watchdog class creates a second thread that can Alarm if a specific
7 // specified at construction time. The Watchdog may be used many times by
9 // The Watchdog is typically used under a debugger, where the stack traces on
10 // other threads can be examined if/when the Watchdog alarms.
14 // to permanently disable the watchdog. Disabled watchdogs don't even spawn
32 class BASE_API Watchdog {
34 // Constructor specifies how long the Watchdog will wait before alarming.
35 Watchdog(const TimeDelta& duration,
38 virtual ~Watchdog();
59 explicit ThreadDelegate(Watchdog* watchdog) : watchdog_(watchdog)
    [all...]
  /external/chromium_org/base/threading/
watchdog.cc 5 #include "base/threading/watchdog.h"
35 Watchdog::Watchdog(const TimeDelta& duration,
53 // Notify watchdog thread, and wait for it to finish up.
54 Watchdog::~Watchdog() {
63 void Watchdog::Cleanup() {
73 bool Watchdog::IsJoinable() {
80 void Watchdog::Arm() {
84 void Watchdog::ArmSomeTimeDeltaAgo(const TimeDelta& time_delta)
    [all...]
watchdog.h 5 // The Watchdog class creates a second thread that can Alarm if a specific
7 // specified at construction time. The Watchdog may be used many times by
9 // The Watchdog is typically used under a debugger, where the stack traces on
10 // other threads can be examined if/when the Watchdog alarms.
14 // to permanently disable the watchdog. Disabled watchdogs don't even spawn
32 class BASE_EXPORT Watchdog {
34 // Constructor specifies how long the Watchdog will wait before alarming.
35 Watchdog(const TimeDelta& duration,
38 virtual ~Watchdog();
40 // Notify watchdog thread to finish up. Sets the state_ to SHUTDOWN
    [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) {
175 Watchdog watchdog = new Watchdog(5000) local
260 Watchdog watchdog = new Watchdog(5000); local
    [all...]
  /frameworks/base/services/java/com/android/server/
Watchdog.java 51 public class Watchdog extends Thread {
52 static final String TAG = "Watchdog";
58 // Set this to true to have the watchdog record kernel thread stacks when it fires
69 static Watchdog sWatchdog;
144 synchronized (Watchdog.this) {
150 synchronized (Watchdog.this) {
172 public static Watchdog getInstance() {
174 sWatchdog = new Watchdog();
180 private Watchdog() {
181 super("watchdog");
    [all...]
  /hardware/qcom/media/mm-video-legacy/vidc/venc/test/
venc_test.cpp     [all...]
  /hardware/qcom/media/mm-video-v4l2/vidc/venc/test/
venc_test.cpp     [all...]
  /packages/apps/Email/src/com/android/email/service/
AttachmentDownloadService.java 73 // How often our watchdog checks for callback timeouts
160 * Watchdog alarm receiver; responsible for making sure that downloads in progress are not
163 public static class Watchdog extends BroadcastReceiver {
171 }, "AttachmentDownloadService Watchdog").start();
431 * Watchdog for downloads; we use this in case we are hanging on a download, which might
457 LogUtils.d(TAG, "Reschedule watchdog...");
497 Intent intent = new Intent(mContext, Watchdog.class);
513 * set our watchdog alarm
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/tools/common/m2/internal/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 

Completed in 1236 milliseconds