Searched refs:interactive (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodManagerInternal.java29 void setInteractive(boolean interactive); argument
/frameworks/base/core/java/android/hardware/input/
H A DInputManagerInternal.java44 public abstract void setInteractive(boolean interactive); argument
/frameworks/base/services/core/java/com/android/server/power/
H A DNotifier.java103 // The current interactive state. This is set as soon as an interactive state
111 // The pending interactive state that we will eventually want to broadcast.
119 // The currently broadcasted interactive state. This reflects what other parts of the
155 // Initialize interactive state for battery stats.
295 final boolean interactive = PowerManagerInternal.isInteractive(wakefulness);
298 + ", reason=" + reason + ", interactive=" + interactive);
310 // Handle any early interactive state changes.
312 if (mInteractive != interactive) {
[all...]
H A DPowerManagerService.java236 // Timestamp of last interactive power hint.
282 // True if interactive mode is enabled.
306 // True to decouple interactive mode from the display state.
2214 final boolean interactive = mDisplayPowerRequest.isBrightOrDim();
2233 // Inform the power HAL about interactive mode.
2234 // Although we could set interactive strictly based on the wakefulness
2236 // the display policy state instead so that the interactive state observed
2240 // When becoming non-interactive, we want to defer sending this signal
2244 if (interactive || mDisplayReady) {
2245 setHalInteractiveModeLocked(interactive);
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp205 void setInteractive(bool interactive);
770 void NativeInputManager::setInteractive(bool interactive) { argument
771 mInteractive = interactive;
878 bool interactive = mInteractive.load(); local
879 if (interactive) {
903 if (interactive) {
915 bool interactive = mInteractive.load(); local
916 if (interactive) {
935 if (interactive) {
1376 jclass clazz, jlong ptr, jboolean interactive) {
1375 nativeSetInteractive(JNIEnv* env, jclass clazz, jlong ptr, jboolean interactive) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DIBatteryStats.aidl91 void noteInteractive(boolean interactive);
/frameworks/base/services/core/java/com/android/server/
H A DGestureLauncherService.java254 public boolean interceptPowerKeyDown(KeyEvent event, boolean interactive, argument
264 intercept = interactive;
H A DInputMethodManagerService.java437 * True if the device is currently interactive with user. The value is true initially.
2975 private void handleSetInteractive(final boolean interactive) { argument
2977 mIsInteractive = interactive;
2978 updateSystemUiLocked(mCurToken, interactive ? mImeWindowVis : 0, mBackDisposition);
3877 public void setInteractive(boolean interactive) { argument
3880 interactive ? 1 : 0, 0));
H A DAlarmManagerService.java1384 pw.print(" Time since non-interactive: ");
1473 pw.print(", max non-interactive time: ");
1990 void interactiveStateChangedLocked(boolean interactive) { argument
1991 if (mInteractive != interactive) {
1992 mInteractive = interactive;
1994 if (interactive) {
/frameworks/base/services/core/java/com/android/server/policy/
H A DPhoneWindowManager.java660 // Whether to support long press from power button in non-interactive mode
1004 private void interceptPowerKeyDown(KeyEvent event, boolean interactive) { argument
1017 boolean panic = mImmersiveModeConfirmation.onPowerKeyDown(interactive,
1024 if (interactive && !mScreenshotChordPowerKeyTriggered
1041 && telecomManager.isInCall() && interactive) {
1052 gesturedServiceIntercepted = gestureService.interceptPowerKeyDown(event, interactive,
1064 if (interactive) {
1065 // When interactive, we're already awake.
1095 private void interceptPowerKeyUp(KeyEvent event, boolean interactive, boolean canceled) { argument
1111 interactive
1147 powerPress(long eventTime, boolean interactive, int count) argument
1184 powerMultiPressAction(long eventTime, boolean interactive, int behavior) argument
[all...]
/frameworks/base/core/java/android/service/dreams/
H A DDreamService.java61 * <p>Dreams are interactive screensavers launched when a charging device is idle, or docked in a
469 * Marks this dream as interactive to receive input events.
471 * <p>Non-interactive dreams (default) will dismiss on the first input event.</p>
475 * @param interactive True if this dream will handle input events.
477 public void setInteractive(boolean interactive) { argument
478 mInteractive = interactive;
482 * Returns whether or not this dream is interactive. Defaults to false.
1075 if (isInteractive()) pw.print(" interactive");
/frameworks/base/services/core/java/com/android/server/am/
H A DBatteryStatsService.java557 public void noteInteractive(boolean interactive) { argument
560 mStats.noteInteractiveLocked(interactive);
/frameworks/base/services/core/java/com/android/server/input/
H A DInputManagerService.java213 private static native void nativeSetInteractive(long ptr, boolean interactive); argument
2264 public void setInteractive(boolean interactive) { argument
2265 nativeSetInteractive(mPtr, interactive);
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java3536 public void noteInteractiveLocked(boolean interactive) { argument
3537 if (mInteractive != interactive) {
3539 mInteractive = interactive;
3540 if (DEBUG) Slog.v(TAG, "Interactive: " + interactive);
3541 if (interactive) {

Completed in 613 milliseconds