/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
D | KeyguardStateControllerTest.java | 111 assertThat(mKeyguardStateController.isUnlocked()).isTrue(); in testIsUnlocked() 115 assertThat(mKeyguardStateController.isUnlocked()).isTrue(); in testIsUnlocked() 120 assertThat(mKeyguardStateController.isUnlocked()).isFalse(); in testIsUnlocked() 125 assertThat(mKeyguardStateController.isUnlocked()).isTrue(); in testIsUnlocked()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/dagger/ |
D | ControlsComponentTest.kt | 117 `when`(keyguardStateController.isUnlocked()).thenReturn(false) in testFeatureEnabledAndCannotShowOnLockScreenVisibility() 129 `when`(keyguardStateController.isUnlocked()).thenReturn(false) in testFeatureEnabledAndCanShowOnLockScreenVisibility() 143 `when`(keyguardStateController.isUnlocked()).thenReturn(true) in testFeatureEnabledAndCanShowWhileUnlockedVisibility()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tiles/ |
D | DeviceControlsTileTest.kt | 122 `when`(keyguardStateController.isUnlocked()).thenReturn(true) in setUp() 281 `when`(keyguardStateController.isUnlocked).thenReturn(false) in handleClick_availableAndLocked_activityStarted() 302 `when`(keyguardStateController.isUnlocked).thenReturn(true) in handleClick_availableAndUnlocked_activityStarted() 326 `when`(keyguardStateController.isUnlocked).thenReturn(false) in handleClick_availableAfterUnlockAndIsLocked_keyguardDismissRequired() 353 `when`(keyguardStateController.isUnlocked).thenReturn(true) in handleClick_availableAfterUnlockAndIsUnlocked_activityStarted()
|
D | QuickAccessWalletTileTest.java | 225 when(mKeyguardStateController.isUnlocked()).thenReturn(false); in testHandleClick_hasCards_deviceLocked_startWalletActivity() 242 when(mKeyguardStateController.isUnlocked()).thenReturn(true); in testHandleClick_hasCards_deviceUnlocked_startWalletActivity() 295 when(mKeyguardStateController.isUnlocked()).thenReturn(true); in testHandleUpdateState_walletIsUpdating() 330 when(mKeyguardStateController.isUnlocked()).thenReturn(false); in testHandleUpdateState_hasCard_deviceLocked_tileInactive() 346 when(mKeyguardStateController.isUnlocked()).thenReturn(true); in testHandleUpdateState_hasCard_deviceUnlocked_tileActive() 412 when(mKeyguardStateController.isUnlocked()).thenReturn(true); in testQueryCards_hasCards_updateSideViewDrawable()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/controller/ |
D | ControlActionCoordinatorImplTest.kt | 113 `when`(keyguardStateController.isUnlocked()).thenReturn(false) in testToggleDoesNotRunWhenLockedThenRunsWhenUnlocked() 125 `when`(keyguardStateController.isUnlocked()).thenReturn(true) in testToggleDoesNotRunWhenLockedThenRunsWhenUnlocked()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | KeyguardStateController.java | 30 default boolean isUnlocked() { in isUnlocked() method
|
D | UserSwitcherController.java | 1177 if (!mKeyguardStateController.isUnlocked() in onClick()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/wallet/ui/ |
D | WalletScreenController.java | 150 !mKeyguardStateController.isUnlocked(), in onWalletCardsRetrieved() 211 if (!mKeyguardStateController.isUnlocked() in onCardClicked() 221 if (!mKeyguardStateController.isUnlocked()) { in onCardClicked()
|
D | WalletActivity.java | 155 if (!mKeyguardStateController.isUnlocked() in onCreate() 160 if (mKeyguardStateController.isUnlocked()) { in onCreate()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wallet/ui/ |
D | WalletScreenControllerTest.java | 117 when(mKeyguardStateController.isUnlocked()).thenReturn(true); in setUp() 138 when(mKeyguardStateController.isUnlocked()).thenReturn(false); in queryCards_deviceLocked_udfpsEnabled_hideUnlockButton() 162 when(mKeyguardStateController.isUnlocked()).thenReturn(false); in queryCards_deviceLocked_udfpsNotEnabled_showUnlockButton() 387 when(mKeyguardStateController.isUnlocked()).thenReturn(false); in onCardClicked_deviceLocked_logUnlockEvent()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/dagger/ |
D | ControlsComponent.kt | 109 if (!canShowWhileLockedSetting && !keyguardStateController.isUnlocked()) { in isEnabled()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/ |
D | QuickAccessWalletTile.java | 134 if (mKeyguardStateController.isUnlocked()) { in handleClick() 166 boolean isDeviceLocked = !mKeyguardStateController.isUnlocked(); in handleUpdateState()
|
D | DeviceControlsTile.kt | 115 if (keyguardStateController.isUnlocked) { in handleClick()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/ |
D | GlobalActionsDialog.java | 121 boolean unlocked = mKeyguardStateController.isUnlocked(); 286 return mWalletPlugin.onPanelShown(this, !mKeyguardStateController.isUnlocked()); in getWalletViewController() 586 return !mKeyguardStateController.isUnlocked() in isWalletAvailableAfterUnlock()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/globalactions/ |
D | GlobalActionsDialogTest.java | 492 when(mKeyguardStateController.isUnlocked()).thenReturn(false); in testShouldShowLockScreenMessage() 516 when(mKeyguardStateController.isUnlocked()).thenReturn(false); in testShouldNotShowLockScreenMessage_whenWalletShownOnLockScreen() 540 when(mKeyguardStateController.isUnlocked()).thenReturn(false); in testShouldNotShowLockScreenMessage_whenWalletBothDisabled()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/ui/ |
D | ControlsUiControllerImpl.kt | 259 if (keyguardStateController.isUnlocked()) { in <lambda>() 281 controlsMetricsLogger.refreshBegin(selectionItem.uid, !keyguardStateController.isUnlocked()) in <lambda>() 524 val isLocked = !keyguardStateController.isUnlocked() in <lambda>()
|
D | ControlActionCoordinatorImpl.kt | 65 get() = !keyguardStateController.isUnlocked() in <lambda>()
|
/frameworks/base/services/people/java/com/android/server/people/data/ |
D | UserData.java | 85 boolean isUnlocked() { in isUnlocked() method in UserData
|
D | DataManager.java | 666 if (userData == null || userData.isUnlocked()) { in cleanupUser() 755 if (userData.isUnlocked()) { in forAllUnlockedUsers() 764 return userData != null && userData.isUnlocked() ? userData : null; in getUnlockedUserData()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/privacy/ |
D | PrivacyDialogController.kt | 118 if (!keyguardStateController.isUnlocked) { in startActivity()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | StatusBarRemoteInputCallback.java | 121 && mKeyguardStateController.isUnlocked()) { in onStateChanged()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
D | UiccProfile.java | 1349 boolean isUnlocked = isUserUnlocked(); in onCarrierPrivilegesLoadedMessage() 1352 if (isProvisioned && isUnlocked) { in onCarrierPrivilegesLoadedMessage() 1365 if (!isUnlocked) { in onCarrierPrivilegesLoadedMessage()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/privacy/ |
D | PrivacyDialogControllerTest.kt | 574 `when`(keyguardStateController.isUnlocked).thenReturn(true) in <lambda>()
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | ProcessRecord.java | 700 boolean isUnlocked() { in isUnlocked() method in ProcessRecord
|
D | ContentProviderHelper.java | 1283 if (app.userId != userId || app.getThread() == null || app.isUnlocked()) { in installEncryptionUnawareProviders()
|