OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sWatchdog
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Gallery2/src/com/android/gallery3d/util/
Profile.java
53
private static Watchdog
sWatchdog
= new Watchdog();
189
sWatchdog
.addWatchEntry(t, cycleTimeInMs);
194
sWatchdog
.removeWatchEntry(Thread.currentThread());
199
sWatchdog
.removeAllWatchEntries();
204
sWatchdog
.dumpToFile(filename);
209
sWatchdog
.reset();
216
sWatchdog
.hold(Thread.currentThread());
220
sWatchdog
.commit(Thread.currentThread());
224
sWatchdog
.drop(Thread.currentThread());
/frameworks/base/services/java/com/android/server/
Watchdog.java
77
static Watchdog
sWatchdog
;
206
if (
sWatchdog
== null) {
207
sWatchdog
= new Watchdog();
210
return
sWatchdog
;
Completed in 183 milliseconds