Searched defs:monitor (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/services/java/com/android/server/am/
H A DDeviceMonitor.java43 /** Is the monitor currently running? */
49 monitor();
58 private void monitor() { method in class:DeviceMonitor
H A DActivityManagerService.java12481 public void monitor() { method in class:ActivityManagerService
/frameworks/base/services/java/com/android/server/
H A DWatchdog.java45 /** This class calls its monitor every minute. Killing this process if they don't return **/
106 * Used for scheduling monitor callbacks and checking memory usage.
128 mCurrentMonitor.monitor();
167 void monitor(); method in interface:Watchdog.Monitor
212 public void addMonitor(Monitor monitor) { argument
217 mMonitors.add(monitor);
H A DInputManager.java72 boolean monitor);
71 nativeRegisterInputChannel(InputChannel inputChannel, boolean monitor) argument
H A DPowerManagerService.java2773 public void monitor() { method in class:PowerManagerService
H A DWindowManagerService.java10450 public void monitor() { method in class:WindowManagerService
/frameworks/base/core/java/android/app/
H A DInstrumentation.java54 * before any of the application code, allowing you to monitor all of the
408 * when a new activity is being started the monitor will be checked and, if
433 * @param which The set of intents this monitor is responsible for.
434 * @param result A canned result to return if the monitor is hit; can
436 * @param block Controls whether the monitor should block the activity
454 * @param cls The activity class this monitor is responsible for.
455 * @param result A canned result to return if the monitor is hit; can
457 * @param block Controls whether the monitor should block the activity
487 * Check whether this monitor blocks activity starts (not allowing the
495 * Retrieve the number of times the monitor ha
594 addMonitor(ActivityMonitor monitor) argument
663 checkMonitorHit(ActivityMonitor monitor, int minHits) argument
683 waitForMonitor(ActivityMonitor monitor) argument
702 waitForMonitorWithTimeout(ActivityMonitor monitor, long timeOut) argument
718 removeMonitor(ActivityMonitor monitor) argument
[all...]
/frameworks/base/services/jni/
H A Dcom_android_server_InputManager.cpp174 jweak inputChannelObjWeak, bool monitor);
323 const sp<InputChannel>& inputChannel, jobject inputChannelObj, bool monitor) {
346 status = mInputManager->getDispatcher()->registerInputChannel(inputChannel, monitor);
1099 jobject inputChannelObj, jboolean monitor) {
1113 env, inputChannel, inputChannelObj, monitor);
1120 if (! monitor) {
322 registerInputChannel(JNIEnv* env, const sp<InputChannel>& inputChannel, jobject inputChannelObj, bool monitor) argument
1098 android_server_InputManager_nativeRegisterInputChannel(JNIEnv* env, jclass clazz, jobject inputChannelObj, jboolean monitor) argument
/frameworks/base/libs/ui/
H A DInputDispatcher.cpp2758 status_t InputDispatcher::registerInputChannel(const sp<InputChannel>& inputChannel, bool monitor) { argument
2760 LOGD("channel '%s' ~ registerInputChannel - monitor=%s", inputChannel->getName().string(),
2761 toString(monitor));
2784 if (monitor) {
/frameworks/base/libs/ui/tests/
H A DInputReader_test.cpp349 virtual status_t registerInputChannel(const sp<InputChannel>& inputChannel, bool monitor) { argument

Completed in 452 milliseconds