Home
last modified time | relevance | path

Searched refs:pendingIntentResponse (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/services/credentials/java/com/android/server/credentials/
H A DPendingIntentResultHandler.java37 ProviderPendingIntentResponse pendingIntentResponse) { in isValidResponse() argument
39 return pendingIntentResponse.getResultCode() == Activity.RESULT_OK; in isValidResponse()
44 ProviderPendingIntentResponse pendingIntentResponse) { in isCancelledResponse() argument
45 return pendingIntentResponse.getResultCode() == Activity.RESULT_CANCELED; in isCancelledResponse()
H A DProviderCreateSession.java265 private void onCreateEntrySelected(ProviderPendingIntentResponse pendingIntentResponse) { in onCreateEntrySelected() argument
267 pendingIntentResponse); in onCreateEntrySelected()
276 pendingIntentResponse.getResultData()); in onCreateEntrySelected()
286 private void onRemoteEntrySelected(ProviderPendingIntentResponse pendingIntentResponse) { in onRemoteEntrySelected() argument
289 onCreateEntrySelected(pendingIntentResponse); in onRemoteEntrySelected()
294 ProviderPendingIntentResponse pendingIntentResponse) { in maybeGetPendingIntentException() argument
295 if (pendingIntentResponse == null) { in maybeGetPendingIntentException()
299 if (PendingIntentResultHandler.isValidResponse(pendingIntentResponse)) { in maybeGetPendingIntentException()
301 .extractCreateCredentialException(pendingIntentResponse.getResultData()); in maybeGetPendingIntentException()
306 } else if (PendingIntentResultHandler.isCancelledResponse(pendingIntentResponse)) { in maybeGetPendingIntentException()
H A DProviderRegistryGetSession.java281 ProviderPendingIntentResponse pendingIntentResponse) { in maybeGetPendingIntentException() argument
282 if (pendingIntentResponse == null) { in maybeGetPendingIntentException()
285 if (PendingIntentResultHandler.isValidResponse(pendingIntentResponse)) { in maybeGetPendingIntentException()
287 .extractGetCredentialException(pendingIntentResponse.getResultData()); in maybeGetPendingIntentException()
292 } else if (PendingIntentResultHandler.isCancelledResponse(pendingIntentResponse)) { in maybeGetPendingIntentException()
H A DProviderGetSession.java397 ProviderPendingIntentResponse pendingIntentResponse) { in maybeGetPendingIntentException() argument
398 if (pendingIntentResponse == null) { in maybeGetPendingIntentException()
401 if (PendingIntentResultHandler.isValidResponse(pendingIntentResponse)) { in maybeGetPendingIntentException()
403 .extractGetCredentialException(pendingIntentResponse.getResultData()); in maybeGetPendingIntentException()
407 } else if (PendingIntentResultHandler.isCancelledResponse(pendingIntentResponse)) { in maybeGetPendingIntentException()