OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:watchDog
(Results
1 - 3
of
3
) sorted by null
/cts/suite/cts/deviceTests/opengl/src/com/android/cts/opengl/primitive/
GLPrimitiveActivity.java
18
import android.cts.util.
WatchDog
;
122
private class Worker extends Thread implements
WatchDog
.TimeoutCallback {
124
private
WatchDog
watchDog
;
137
// Creates a
watchdog
to ensure a iteration doesn't exceed the timeout.
138
watchDog
= new
WatchDog
(mTimeout, this);
159
watchDog
.start();
162
watchDog
.stop();
/cts/suite/cts/deviceTests/opengl/src/com/android/cts/opengl/reference/
GLGameActivity.java
21
import android.cts.util.
WatchDog
;
100
private class Worker extends Thread implements
WatchDog
.TimeoutCallback {
102
private
WatchDog
watchDog
;
117
// Creates a
watchdog
to ensure a iteration doesn't exceed the timeout.
118
watchDog
= new
WatchDog
(mTimeout, this);
119
watchDog
.start();
134
watchDog
.stop();
/packages/apps/Nfc/src/com/android/nfc/
NfcService.java
162
// Time to wait for NFC controller to initialize before
watchdog
167
// Time to wait for routing to be applied before
watchdog
721
WatchDogThread
watchDog
= new WatchDogThread("enableInternal", INIT_WATCHDOG_MS);
722
watchDog
.start();
735
watchDog
.cancel();
772
WatchDogThread
watchDog
= new WatchDogThread("disableInternal", ROUTING_WATCHDOG_MS);
773
watchDog
.start();
808
// Stop
watchdog
if tag present
809
// A convenient way to stop the
watchdog
properly consists of
819
watchDog
.cancel()
[
all
...]
Completed in 47 milliseconds