Home
last modified time | relevance | path

Searched refs:customMessage (Results 1 – 13 of 13) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DActivityStarterImpl.kt272 customMessage: String?,
280 customMessage = customMessage,
301 customMessage: String?,
307 customMessage = customMessage,
369 customMessage: String?,
378 customMessage = customMessage,
440 customMessage: String? = null,
546 customMessage,
778 customMessage: String? = null,
816 customMessage: String? = null,
[all …]
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bouncer/domain/interactor/
H A DBouncerMessageInteractorTest.kt122 assertThat(repository.customMessage.value).isNull()
139 assertThat(repository.customMessage.value).isNull()
152 val customMessage = repository.customMessage regex
153 assertThat(customMessage.value!!.message!!.messageResId)
155 assertThat(customMessage.value!!.secondaryMessage!!.message).isEqualTo("not empty")
158 assertThat(customMessage.value).isNull()
231 assertThat(repository.customMessage.value).isNull()
H A DBouncerInteractorTest.kt273 val customMessage = "Hello there!" regex
274 underTest.showOrUnlockDevice(customMessage)
277 assertThat(message).isEqualTo(customMessage)
/aosp14/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
H A DActivityStarter.java85 @Nullable String customMessage); in postStartActivityDismissingKeyguard() argument
102 boolean afterKeyguardGone, @Nullable String customMessage); in dismissKeyguardThenExecute() argument
134 @Nullable String customMessage); in executeRunnableDismissingKeyguard() argument
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DActivityStarterImplTest.kt202 val customMessage = "Enter your pin." regex
205 underTest.dismissKeyguardThenExecute({ true }, {}, false, customMessage)
212 eq(customMessage)
218 val customMessage = "Enter your pin." regex
230 customMessage
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DViewMediatorCallback.java101 void setCustomMessage(CharSequence customMessage); in setCustomMessage() argument
H A DKeyguardSecurityContainerController.java743 CharSequence customMessage = mViewMediatorCallback.consumeCustomMessage(); in setInitialMessage() local
744 if (!TextUtils.isEmpty(customMessage)) { in setInitialMessage()
745 showMessage(customMessage, /* colorState= */ null, /* animated= */ false); in setInitialMessage()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/domain/interactor/
H A DBouncerMessageAuditLogger.kt46 collectAndLog(repository.customMessage, "customMessage: ")
H A DBouncerMessageInteractor.kt165 repository.customMessage,
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/bouncer/data/repository/
H A DFakeBouncerMessageRepository.kt36 override val customMessage: StateFlow<BouncerMessageModel?>
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bouncer/data/repo/
H A DBouncerMessageRepositoryTest.kt124 val customMessage = collectLastValue(underTest.customMessage) regex
126 assertThat(customMessage()).isEqualTo(message("not empty"))
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/data/repository/
H A DBouncerMessageRepository.kt78 val customMessage: Flow<BouncerMessageModel?>
238 override val customMessage: Flow<BouncerMessageModel?> = _customMessage
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java940 public void setCustomMessage(CharSequence customMessage) {
941 mCustomMessage = customMessage;