Home
last modified time | relevance | path

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

/frameworks/base/services/credentials/java/com/android/server/credentials/
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()
DProviderCreateSession.java266 private void onCreateEntrySelected(ProviderPendingIntentResponse pendingIntentResponse) { in onCreateEntrySelected() argument
268 pendingIntentResponse); in onCreateEntrySelected()
277 pendingIntentResponse.getResultData()); in onCreateEntrySelected()
287 private void onRemoteEntrySelected(ProviderPendingIntentResponse pendingIntentResponse) { in onRemoteEntrySelected() argument
290 onCreateEntrySelected(pendingIntentResponse); in onRemoteEntrySelected()
295 ProviderPendingIntentResponse pendingIntentResponse) { in maybeGetPendingIntentException() argument
296 if (pendingIntentResponse == null) { in maybeGetPendingIntentException()
300 if (PendingIntentResultHandler.isValidResponse(pendingIntentResponse)) { in maybeGetPendingIntentException()
302 .extractCreateCredentialException(pendingIntentResponse.getResultData()); in maybeGetPendingIntentException()
307 } else if (PendingIntentResultHandler.isCancelledResponse(pendingIntentResponse)) { in maybeGetPendingIntentException()
DProviderRegistryGetSession.java282 ProviderPendingIntentResponse pendingIntentResponse) { in maybeGetPendingIntentException() argument
283 if (pendingIntentResponse == null) { in maybeGetPendingIntentException()
286 if (PendingIntentResultHandler.isValidResponse(pendingIntentResponse)) { in maybeGetPendingIntentException()
288 .extractGetCredentialException(pendingIntentResponse.getResultData()); in maybeGetPendingIntentException()
293 } else if (PendingIntentResultHandler.isCancelledResponse(pendingIntentResponse)) { in maybeGetPendingIntentException()
DProviderGetSession.java447 ProviderPendingIntentResponse pendingIntentResponse) { in maybeGetPendingIntentException() argument
448 if (pendingIntentResponse == null) { in maybeGetPendingIntentException()
451 if (PendingIntentResultHandler.isValidResponse(pendingIntentResponse)) { in maybeGetPendingIntentException()
453 .extractGetCredentialException(pendingIntentResponse.getResultData()); in maybeGetPendingIntentException()
457 } else if (PendingIntentResultHandler.isCancelledResponse(pendingIntentResponse)) { in maybeGetPendingIntentException()