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

/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodManagerInternal.java29 public void setInteractive(boolean interactive); argument
/frameworks/base/core/java/android/hardware/input/
H A DInputManagerInternal.java41 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.java218 // Timestamp of last interactive power hint.
261 // True if interactive mode is enabled.
285 // True to decouple interactive mode from the display state.
2103 final boolean interactive = mDisplayPowerRequest.isBrightOrDim();
2122 // Inform the power HAL about interactive mode.
2123 // Although we could set interactive strictly based on the wakefulness
2125 // the display policy state instead so that the interactive state observed
2129 // When becoming non-interactive, we want to defer sending this signal
2133 if (interactive || mDisplayReady) {
2134 setHalInteractiveModeLocked(interactive);
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp200 void setInteractive(bool interactive);
773 void NativeInputManager::setInteractive(bool interactive) { argument
774 mInteractive = interactive;
857 bool interactive = mInteractive.load(); local
858 if (interactive) {
882 if (interactive) {
894 bool interactive = mInteractive.load(); local
895 if (interactive) {
914 if (interactive) {
1296 jclass clazz, jlong ptr, jboolean interactive) {
1295 nativeSetInteractive(JNIEnv* env, jclass clazz, jlong ptr, jboolean interactive) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DIBatteryStats.aidl87 void noteInteractive(boolean interactive);
/frameworks/base/services/core/java/com/android/server/policy/
H A DPhoneWindowManager.java584 // Whether to support long press from power button in non-interactive mode
883 private void interceptPowerKeyDown(KeyEvent event, boolean interactive) { argument
896 boolean panic = mImmersiveModeConfirmation.onPowerKeyDown(interactive,
903 if (interactive && !mScreenshotChordPowerKeyTriggered
920 && telecomManager.isInCall() && interactive) {
932 if (interactive) {
933 // When interactive, we're already awake.
963 private void interceptPowerKeyUp(KeyEvent event, boolean interactive, boolean canceled) { argument
979 interactive ? 1 : 0, mPowerKeyPressCounter, eventTime);
986 powerPress(eventTime, interactive, mPowerKeyPressCounte
1008 powerPress(long eventTime, boolean interactive, int count) argument
1045 powerMultiPressAction(long eventTime, boolean interactive, int behavior) argument
[all...]
/frameworks/base/core/java/android/service/dreams/
H A DDreamService.java60 * <p>Dreams are interactive screensavers launched when a charging device is idle, or docked in a
468 * Marks this dream as interactive to receive input events.
470 * <p>Non-interactive dreams (default) will dismiss on the first input event.</p>
474 * @param interactive True if this dream will handle input events.
476 public void setInteractive(boolean interactive) { argument
477 mInteractive = interactive;
481 * Returns whether or not this dream is interactive. Defaults to false.
1074 if (isInteractive()) pw.print(" interactive");
/frameworks/base/services/core/java/com/android/server/am/
H A DBatteryStatsService.java508 public void noteInteractive(boolean interactive) { argument
511 mStats.noteInteractiveLocked(interactive);
/frameworks/base/services/core/java/com/android/server/input/
H A DInputManagerService.java189 private static native void nativeSetInteractive(long ptr, boolean interactive); argument
1793 public void setInteractive(boolean interactive) { argument
1794 nativeSetInteractive(mPtr, interactive);
/frameworks/base/services/core/java/com/android/server/
H A DAlarmManagerService.java1199 pw.print(" Time since non-interactive: ");
1284 pw.print(", max non-interactive time: ");
1727 void interactiveStateChangedLocked(boolean interactive) { argument
1728 if (mInteractive != interactive) {
1729 mInteractive = interactive;
1731 if (interactive) {
H A DInputMethodManagerService.java399 * True if the device is currently interactive with user. The value is true initially.
2863 private void handleSetInteractive(final boolean interactive) { argument
2865 mIsInteractive = interactive;
2866 updateSystemUiLocked(mCurToken, interactive ? mImeWindowVis : 0, mBackDisposition);
3745 public void setInteractive(boolean interactive) { argument
3748 interactive ? 1 : 0, 0));
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java3141 public void noteInteractiveLocked(boolean interactive) { argument
3142 if (mInteractive != interactive) {
3144 mInteractive = interactive;
3145 if (DEBUG) Slog.v(TAG, "Interactive: " + interactive);
3146 if (interactive) {

Completed in 384 milliseconds