Searched refs:why (Results 1 - 20 of 20) sorted by relevance

/frameworks/base/core/java/android/view/
H A DWindowManagerPolicyConstants.java112 static String offReasonToString(int why) { argument
113 switch (why) {
121 return Integer.toString(why);
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardUpdateMonitorCallback.java166 * @param why see {@link #onFinishedGoingToSleep(int)}
171 public void onStartedGoingToSleep(int why) { } argument
175 * @param why either {@link WindowManagerPolicyConstants#OFF_BECAUSE_OF_ADMIN},
182 public void onFinishedGoingToSleep(int why) { } argument
H A DKeyguardMessageArea.java51 public void onFinishedGoingToSleep(int why) {
H A DCarrierText.java72 public void onFinishedGoingToSleep(int why) {
H A DKeyguardStatusView.java104 public void onFinishedGoingToSleep(int why) {
H A DKeyguardUpdateMonitor.java1910 public void dispatchStartedGoingToSleep(int why) { argument
1911 mHandler.sendMessage(mHandler.obtainMessage(MSG_STARTED_GOING_TO_SLEEP, why, 0));
1914 public void dispatchFinishedGoingToSleep(int why) { argument
1918 mHandler.sendMessage(mHandler.obtainMessage(MSG_FINISHED_GOING_TO_SLEEP, why, 0));
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
H A DDozeLog.java149 public static void traceScreenOff(int why) { argument
151 log("screenOff why=" + why);
304 public void onFinishedGoingToSleep(int why) {
305 traceScreenOff(why);
/frameworks/base/services/core/java/com/android/server/policy/keyguard/
H A DKeyguardServiceDelegate.java352 public void onStartedGoingToSleep(int why) { argument
354 mKeyguardService.onStartedGoingToSleep(why);
356 mKeyguardState.offReason = why;
360 public void onFinishedGoingToSleep(int why, boolean cameraGestureTriggered) { argument
362 mKeyguardService.onFinishedGoingToSleep(why, cameraGestureTriggered);
/frameworks/base/services/core/java/com/android/server/power/
H A DNotifier.java437 final int why = translateOffReason(mInteractiveChangeReason);
441 mPolicy.startedGoingToSleep(why);
477 final int why = translateOffReason(mInteractiveChangeReason);
483 log.setSubtype(why);
485 EventLogTags.writePowerScreenState(0, why, 0, 0, 0);
486 mPolicy.finishedGoingToSleep(why);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DFingerprintUnlockController.java278 public void onStartedGoingToSleep(int why) { argument
284 public void onFinishedGoingToSleep(int why) { argument
H A DKeyguardBottomAreaView.java756 public void onFinishedGoingToSleep(int why) {
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncJobService.java173 public void callJobFinished(int jobId, boolean needsReschedule, String why) { argument
180 " why=", why);
H A DSyncManager.java406 private void clearAllBackoffs(String why) { argument
408 rescheduleSyncs(EndPoint.USER_ALL_PROVIDER_ALL_ACCOUNTS_ALL, why);
1203 private void removeSyncsForAuthority(EndPoint info, String why) { argument
1210 cancelJob(op, why);
1218 public void removePeriodicSync(EndPoint target, Bundle extras, String why) { argument
1220 Pair.create(target, why));
1293 String why) {
1296 mLogger.log("sendCancelSyncsMessage() ep=", info, " why=", why);
1378 private void clearBackoffSetting(EndPoint target, String why) { argument
1292 sendCancelSyncsMessage(final SyncStorageEngine.EndPoint info, Bundle extras, String why) argument
1439 rescheduleSyncs(EndPoint target, String why) argument
1491 cancelActiveSync(SyncStorageEngine.EndPoint info, Bundle extras, String why) argument
3175 deferSyncH(SyncOperation op, long delay, String why) argument
3202 deferActiveSyncH(ActiveSyncContext asc, String why) argument
3449 removePeriodicSyncInternalH(SyncOperation syncOperation, String why) argument
3466 removePeriodicSyncH(EndPoint target, Bundle extras, String why) argument
3648 cancelActiveSyncH(SyncStorageEngine.EndPoint info, Bundle extras, String why) argument
4112 cancelJob(SyncOperation op, String why) argument
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/wm/
H A DTestWindowManagerPolicy.java281 public void startedGoingToSleep(int why) { argument
286 public void finishedGoingToSleep(int why) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java796 * @param why either {@link WindowManagerPolicyConstants#OFF_BECAUSE_OF_USER} or
799 public void onStartedGoingToSleep(int why) { argument
800 if (DEBUG) Log.d(TAG, "onStartedGoingToSleep(" + why + ")");
827 } else if ((why == WindowManagerPolicyConstants.OFF_BECAUSE_OF_TIMEOUT && timeout > 0)
828 || (why == WindowManagerPolicyConstants.OFF_BECAUSE_OF_USER && !lockImmediately)) {
839 KeyguardUpdateMonitor.getInstance(mContext).dispatchStartedGoingToSleep(why);
843 public void onFinishedGoingToSleep(int why, boolean cameraGestureTriggered) { argument
844 if (DEBUG) Log.d(TAG, "onFinishedGoingToSleep(" + why + ")");
883 KeyguardUpdateMonitor.getInstance(mContext).dispatchFinishedGoingToSleep(why);
/frameworks/base/services/core/java/com/android/server/policy/
H A DWindowManagerPolicy.java1262 * @param why {@link #OFF_BECAUSE_OF_USER}, {@link #OFF_BECAUSE_OF_ADMIN},
1265 public void startedGoingToSleep(int why); argument
1270 * @param why {@link #OFF_BECAUSE_OF_USER}, {@link #OFF_BECAUSE_OF_ADMIN},
1273 public void finishedGoingToSleep(int why); argument
H A DPhoneWindowManager.java6783 public void startedGoingToSleep(int why) { argument
6784 if (DEBUG_WAKEUP) Slog.i(TAG, "Started going to sleep... (why=" + why + ")");
6790 mKeyguardDelegate.onStartedGoingToSleep(why);
6796 public void finishedGoingToSleep(int why) { argument
6798 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished going to sleep... (why=" + why + ")");
6813 mKeyguardDelegate.onFinishedGoingToSleep(why,
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiServiceImpl.java385 private void replyFailed(Message msg, int what, int why) { argument
389 reply.arg1 = why;
/frameworks/base/services/core/java/com/android/server/am/
H A DActiveServices.java1458 // others to know why certain services are running.
2023 private final void bumpServiceExecutingLocked(ServiceRecord r, boolean fg, String why) { argument
2025 + why + " of " + r + " in app " + r.app);
2027 + why + " of " + r.shortName);
/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 150 milliseconds