Home
last modified time | relevance | path

Searched refs:appDisplayName (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/CredentialManager/src/com/android/credentialmanager/
DCredentialSelectorActivity.kt92 val (isCancellationRequest, shouldShowCancellationUi, appDisplayName) = in onNewIntent() constant
96 viewModel.onCancellationUiRequested(appDisplayName) in onNewIntent()
132 val appDisplayName = getAppLabel(packageManager, cancelUiRequest.packageName) in maybeCancelUIUponRequest() constant
136 return Triple(true, shouldShowCancellationUi, appDisplayName) in maybeCancelUIUponRequest()
161 if (cancelRequestState.appDisplayName == null) { in CredentialManagerBottomSheet()
166 UiCancellationScreen(cancelRequestState.appDisplayName) in CredentialManagerBottomSheet()
224 private fun UiCancellationScreen(appDisplayName: String) { in UiCancellationScreen()
226 contentText = stringResource(R.string.request_cancelled_by, appDisplayName), in UiCancellationScreen()
DCredentialSelectorViewModel.kt70 val appDisplayName: String?, constant in com.android.credentialmanager.CancelUiRequestState
99 fun onCancellationUiRequested(appDisplayName: String?) { in onCancellationUiRequested()
100 uiState = uiState.copy(cancelRequestState = CancelUiRequestState(appDisplayName)) in onCancellationUiRequested()