Home
last modified time | relevance | path

Searched refs:entryKey (Results 1 – 18 of 18) sorted by relevance

/aosp14/frameworks/base/services/credentials/java/com/android/server/credentials/
H A DProviderGetSession.java253 + entryKey); in onUiEntrySelected()
257 .getCredentialEntry(entryKey); in onUiEntrySelected()
276 .getAuthenticationAction(entryKey); in onUiEntrySelected()
672 public Action getAuthenticationAction(String entryKey) { in getAuthenticationAction() argument
678 public Action getActionEntry(String entryKey) { in getActionEntry() argument
679 return mUiActionsEntries.get(entryKey) == null in getActionEntry()
684 public RemoteEntry getRemoteEntry(String entryKey) { in getRemoteEntry() argument
691 return mUiCredentialEntries.get(entryKey) == null in getCredentialEntry()
696 if (entryKey == null) { in updateAuthEntryWithNoCredentialsReceived()
702 updateMostRecentAuthEntry(entryKey); in updateAuthEntryWithNoCredentialsReceived()
[all …]
H A DProviderCreateSession.java224 public void onUiEntrySelected(String entryType, String entryKey, in onUiEntrySelected() argument
228 if (mProviderResponseDataHandler.getCreateEntry(entryKey) == null) { in onUiEntrySelected()
236 if (mProviderResponseDataHandler.getRemoteEntry(entryKey) == null) { in onUiEntrySelected()
398 public RemoteEntry getRemoteEntry(String entryKey) { in getRemoteEntry() argument
400 .first == null || !mUiRemoteEntry.first.equals(entryKey) in getRemoteEntry()
406 public CreateEntry getCreateEntry(String entryKey) { in getCreateEntry() argument
407 return mUiCreateEntries.get(entryKey) == null in getCreateEntry()
408 ? null : mUiCreateEntries.get(entryKey).first; in getCreateEntry()
H A DProviderRegistryGetSession.java199 protected void onUiEntrySelected(String entryType, String entryKey, in onUiEntrySelected() argument
203 CredentialEntry credentialEntry = mUiCredentialEntries.get(entryKey); in onUiEntrySelected()
/aosp14/frameworks/base/core/java/android/credentials/ui/
H A DUserSelectionDialogResult.java64 @NonNull String entryKey, @NonNull String entrySubkey) { in UserSelectionDialogResult() argument
67 mEntryKey = entryKey; in UserSelectionDialogResult()
73 @NonNull String entryKey, @NonNull String entrySubkey, in UserSelectionDialogResult() argument
77 mEntryKey = entryKey; in UserSelectionDialogResult()
109 String entryKey = in.readString8(); in UserSelectionDialogResult() local
114 mEntryKey = entryKey; in UserSelectionDialogResult()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DRemoteInputControllerLogger.kt33 entryKey: String,
41 str1 = entryKey
51 entryKey: String,
60 str1 = entryKey
/aosp14/frameworks/base/packages/CredentialManager/src/com/android/credentialmanager/getflow/
H A DGetModel.kt89 entryKey: String,
106 entryKey,
115 entryKey: String,
129 entryKey, entrySubkey,
137 entryKey: String,
143 entryKey,
152 entryKey: String,
161 entryKey,
/aosp14/frameworks/base/packages/CredentialManager/src/com/android/credentialmanager/createflow/
H A DCreateModel.kt80 entryKey: String,
94 entryKey,
103 entryKey: String,
109 entryKey,
/aosp14/frameworks/base/services/credentials/java/com/android/server/credentials/metrics/
H A DProviderSessionMetric.java250 String entryKey = generateMetricKey(entry.getType(), DELTA_RESPONSES_CUT); in collectCandidateEntryMetrics()
251 responseCounts.put(entryKey, responseCounts.getOrDefault(entryKey, 0) + 1); in collectCandidateEntryMetrics()
304 String entryKey = generateMetricKey(entry.getType(), DELTA_RESPONSES_CUT); in beginGetCredentialResponseCollectionCandidateEntryMetrics()
305 responseCounts.put(entryKey, responseCounts.getOrDefault(entryKey, 0) + 1); in beginGetCredentialResponseCollectionCandidateEntryMetrics()
/aosp14/frameworks/base/packages/CredentialManager/src/com/android/credentialmanager/
H A DCredentialSelectorViewModel.kt164 entry.providerId, entry.entryKey, entry.entrySubkey,
213 credManRepo.onOptionSelected(entry.providerId, entry.entryKey, entry.entrySubkey)
368 val entryKey = selectedEntry.entryKey regex
372 " {provider=$providerId, key=$entryKey, subkey=$entrySubkey")
381 entryKey,
H A DDataConverter.kt245 entryKey = it.key,
264 entryKey = it.key,
283 entryKey = it.key,
341 entryKey = entry.key,
364 entryKey = remoteEntry.key,
384 entryKey = it.key,
657 entryKey = it.key,
690 entryKey = remoteEntry.key,
H A DCredentialManagerRepo.kt198 entryKey: String,
206 entryKey,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DVisualStabilityCoordinator.java241 final String entryKey = entry.getKey(); in temporarilyAllowSectionChanges() local
246 if (mEntriesThatCanChangeSection.containsKey(entryKey)) { in temporarilyAllowSectionChanges()
247 mEntriesThatCanChangeSection.get(entryKey).run(); in temporarilyAllowSectionChanges()
252 entryKey, in temporarilyAllowSectionChanges()
254 () -> mEntriesThatCanChangeSection.remove(entryKey), in temporarilyAllowSectionChanges()
H A DHeadsUpCoordinator.kt471 val entryKey = entry.key regex
472 if (mHeadsUpManager.isAlerting(entryKey)) {
475 val removeImmediatelyForRemoteInput = (mRemoteInputManager.isSpinning(entryKey) &&
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/credentials/
H A DProviderRegistryGetSessionTest.java238 String entryKey = providerData.getCredentialEntries().get(0).getSubkey(); in testOnUiEntrySelected_pendingIntentWithException_callbackWithGivenException() local
246 entryKey, providerPendingIntentResponse); in testOnUiEntrySelected_pendingIntentWithException_callbackWithGivenException()
271 String entryKey = providerData.getCredentialEntries().get(0).getSubkey(); in testOnUiEntrySelected_pendingIntentWithException_callbackWithCancelledException() local
278 entryKey, providerPendingIntentResponse); in testOnUiEntrySelected_pendingIntentWithException_callbackWithCancelledException()
304 String entryKey = providerData.getCredentialEntries().get(0).getSubkey(); in testOnUiEntrySelected_correctEntryKeyPendingIntentResponseExists_succeeds() local
310 entryKey, providerPendingIntentResponse); in testOnUiEntrySelected_correctEntryKeyPendingIntentResponseExists_succeeds()
/aosp14/frameworks/base/packages/CredentialManager/src/com/android/credentialmanager/common/
H A DBaseEntry.kt24 val entryKey: String,
/aosp14/frameworks/base/services/core/java/com/android/server/notification/
H A DShortcutHelper.java273 String entryKey = packageBubbles.get(pkgShortcutId); in maybeListenForShortcutChangesForBubbles() local
274 if (r.getKey().equals(entryKey)) { in maybeListenForShortcutChangesForBubbles()
/aosp14/frameworks/base/packages/SettingsProvider/src/android/provider/settings/validators/
H A DSecureSettingsValidators.java357 String entryKey = intValues[i++]; in VALIDATORS.put()
359 if (!NON_NEGATIVE_INTEGER_VALIDATOR.validate(entryKey) in VALIDATORS.put()
364 if (!keys.add(entryKey)) { in VALIDATORS.put()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationRemoteInputManager.java638 public boolean isSpinning(String entryKey) { in isSpinning() argument
639 return mRemoteInputController != null && mRemoteInputController.isSpinning(entryKey); in isSpinning()