Searched defs:why (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardUpdateMonitorCallback.java157 * @param why see {@link #onFinishedGoingToSleep(int)}
159 public void onStartedGoingToSleep(int why) { } argument
163 * @param why either {@link WindowManagerPolicy#OFF_BECAUSE_OF_ADMIN},
167 public void onFinishedGoingToSleep(int why) { } argument
H A DKeyguardUpdateMonitor.java1643 public void dispatchStartedGoingToSleep(int why) { argument
1644 mHandler.sendMessage(mHandler.obtainMessage(MSG_STARTED_GOING_TO_SLEEP, why, 0));
1647 public void dispatchFinishedGoingToSleep(int why) { argument
1651 mHandler.sendMessage(mHandler.obtainMessage(MSG_FINISHED_GOING_TO_SLEEP, why, 0));
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DFingerprintUnlockController.java216 public void onStartedGoingToSleep(int why) { argument
221 public void onFinishedGoingToSleep(int why) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
H A DDozeLog.java140 public static void traceScreenOff(int why) { argument
142 log("screenOff why=" + why);
252 public void onFinishedGoingToSleep(int why) {
253 traceScreenOff(why);
/frameworks/base/services/core/java/com/android/server/policy/keyguard/
H A DKeyguardServiceDelegate.java289 public void onStartedGoingToSleep(int why) { argument
291 mKeyguardService.onStartedGoingToSleep(why);
293 mKeyguardState.offReason = why;
297 public void onFinishedGoingToSleep(int why, boolean cameraGestureTriggered) { argument
299 mKeyguardService.onFinishedGoingToSleep(why, cameraGestureTriggered);
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java703 * @param why either {@link android.view.WindowManagerPolicy#OFF_BECAUSE_OF_USER} or
706 public void onStartedGoingToSleep(int why) { argument
707 if (DEBUG) Log.d(TAG, "onStartedGoingToSleep(" + why + ")");
734 } else if ((why == WindowManagerPolicy.OFF_BECAUSE_OF_TIMEOUT && timeout > 0)
735 || (why == WindowManagerPolicy.OFF_BECAUSE_OF_USER && !lockImmediately)) {
746 KeyguardUpdateMonitor.getInstance(mContext).dispatchStartedGoingToSleep(why);
750 public void onFinishedGoingToSleep(int why, boolean cameraGestureTriggered) { argument
751 if (DEBUG) Log.d(TAG, "onFinishedGoingToSleep(" + why + ")");
789 KeyguardUpdateMonitor.getInstance(mContext).dispatchFinishedGoingToSleep(why);
/frameworks/base/services/core/java/com/android/server/am/
H A DActiveServices.java849 // others to know why certain services are running.
1394 private final void bumpServiceExecutingLocked(ServiceRecord r, boolean fg, String why) { argument
1396 + why + " of " + r + " in app " + r.app);
1398 + why + " of " + r.shortName);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiServiceImpl.java265 private void replyFailed(Message msg, int what, int why) { argument
268 reply.arg1 = why;
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java1030 * @param why {@link #OFF_BECAUSE_OF_USER}, {@link #OFF_BECAUSE_OF_ADMIN},
1033 public void startedGoingToSleep(int why); argument
1038 * @param why {@link #OFF_BECAUSE_OF_USER}, {@link #OFF_BECAUSE_OF_ADMIN},
1041 public void finishedGoingToSleep(int why); argument
/frameworks/base/services/core/java/com/android/server/policy/
H A DPhoneWindowManager.java6082 public void startedGoingToSleep(int why) { argument
6083 if (DEBUG_WAKEUP) Slog.i(TAG, "Started going to sleep... (why=" + why + ")");
6087 mKeyguardDelegate.onStartedGoingToSleep(why);
6093 public void finishedGoingToSleep(int why) { argument
6095 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished going to sleep... (why=" + why + ")");
6109 mKeyguardDelegate.onFinishedGoingToSleep(why,
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...

Completed in 1134 milliseconds