OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Watchdog
(Results
1 - 25
of
45
) 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
...]
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/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
...]
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/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
...]
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/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
...]
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/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
...]
/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/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
...]
/prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/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
...]
/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/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
...]
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/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
57
public class
Watchdog
extends Thread {
58
static final String TAG = "
Watchdog
";
63
// Set this to true to have the
watchdog
record kernel thread stacks when it fires
68
// can trigger the
watchdog
.
104
static
Watchdog
sWatchdog;
202
synchronized (
Watchdog
.this) {
208
synchronized (
Watchdog
.this) {
230
private static final class BinderThreadMonitor implements
Watchdog
.Monitor {
241
public static
Watchdog
getInstance() {
243
sWatchdog = new
Watchdog
();
[
all
...]
NativeDaemonConnector.java
52
final class NativeDaemonConnector implements Runnable, Handler.Callback,
Watchdog
.Monitor {
NetworkManagementService.java
134
implements
Watchdog
.Monitor {
338
// Add ourself to the
Watchdog
monitors.
339
Watchdog
.getInstance().addMonitor(this);
[
all
...]
/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);
/external/llvm/lib/Support/
PrettyStackTrace.cpp
21
#include "llvm/Support/
Watchdog
.h"
63
sys::
Watchdog
W(5);
/frameworks/base/services/core/java/com/android/server/media/projection/
MediaProjectionManagerService.java
19
import com.android.server.
Watchdog
;
58
implements
Watchdog
.Monitor {
83
Watchdog
.getInstance().addMonitor(this);
/frameworks/base/services/core/java/com/android/server/am/
AppErrors.java
24
import com.android.server.
Watchdog
;
60
import static com.android.server.
Watchdog
.NATIVE_STACKS_OF_INTEREST;
488
Watchdog
.getInstance().setActivityController(null);
[
all
...]
/frameworks/base/services/core/java/com/android/server/media/
MediaRouterService.java
20
import com.android.server.
Watchdog
;
71
implements
Watchdog
.Monitor {
104
Watchdog
.getInstance().addMonitor(this);
[
all
...]
MediaSessionService.java
73
import com.android.server.
Watchdog
;
74
import com.android.server.
Watchdog
.Monitor;
136
Watchdog
.getInstance().addMonitor(this);
[
all
...]
/prebuilts/tools/common/m2/repository/org/apache/commons/commons-exec/1.1/
commons-exec-1.1.jar
/frameworks/base/services/java/com/android/server/
SystemServer.java
808
final Watchdog
watchdog
= Watchdog.getInstance();
local
[
all
...]
/frameworks/base/services/core/java/com/android/server/input/
InputManagerService.java
35
import com.android.server.
Watchdog
;
128
implements
Watchdog
.Monitor {
349
// Add ourself to the
Watchdog
monitors.
350
Watchdog
.getInstance().addMonitor(this);
[
all
...]
/frameworks/base/services/core/java/com/android/server/power/
PowerManagerService.java
92
import com.android.server.
Watchdog
;
120
implements
Watchdog
.Monitor {
690
Watchdog
.getInstance().addMonitor(this);
691
Watchdog
.getInstance().addThread(mHandler);
[
all
...]
Completed in 692 milliseconds
1
2