Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/android/credentials/
H A DGetCredentialResponse.java30 public final class GetCredentialResponse implements Parcelable { class
67 public GetCredentialResponse(@NonNull Credential credential) { in GetCredentialResponse() method in GetCredentialResponse
71 private GetCredentialResponse(@NonNull Parcel in) { in GetCredentialResponse() method in GetCredentialResponse
77 public static final @NonNull Parcelable.Creator<GetCredentialResponse> CREATOR =
78 new Parcelable.Creator<GetCredentialResponse>() {
80 public GetCredentialResponse[] newArray(int size) {
81 return new GetCredentialResponse[size];
85 public GetCredentialResponse createFromParcel(@NonNull Parcel in) {
86 return new GetCredentialResponse(in);
H A DIGetCredentialCallback.aidl20 import android.credentials.GetCredentialResponse;
29 oneway void onResponse(in GetCredentialResponse response); in onResponse()
H A DPrepareGetCredentialResponse.java73 @NonNull OutcomeReceiver<GetCredentialResponse, GetCredentialException> callback) { in show() argument
93 public void onResponse(GetCredentialResponse response) { in show()
177 void onResponse(@NonNull GetCredentialResponse response); in onResponse()
H A DCredentialManager.java141 @NonNull OutcomeReceiver<GetCredentialResponse, GetCredentialException> callback) { in getCredential() argument
192 @NonNull OutcomeReceiver<GetCredentialResponse, GetCredentialException> callback) { in getCredential() argument
616 public void onResponse(GetCredentialResponse response) { in onResponse()
649 private final OutcomeReceiver<GetCredentialResponse, GetCredentialException> mCallback;
654 OutcomeReceiver<GetCredentialResponse, GetCredentialException> callback) { in GetCredentialTransport() argument
680 public void onResponse(GetCredentialResponse response) { in onResponse()
H A DGetCredentialResponse.aidl19 parcelable GetCredentialResponse;
/aosp14/frameworks/base/services/credentials/java/com/android/server/credentials/
H A DPendingIntentResultHandler.java24 import android.credentials.GetCredentialResponse;
69 public static GetCredentialResponse extractGetCredentialResponse(Intent resultData) { in extractGetCredentialResponse()
75 GetCredentialResponse.class); in extractGetCredentialResponse()
H A DGetRequestSession.java27 import android.credentials.GetCredentialResponse;
48 IGetCredentialCallback, GetCredentialResponse>
49 implements ProviderSession.ProviderInternalCallback<GetCredentialResponse> {
123 protected void invokeClientCallbackSuccess(GetCredentialResponse response) in invokeClientCallbackSuccess()
136 @Nullable GetCredentialResponse response) { in onFinalResponseReceived()
H A DProviderRegistryGetSession.java27 import android.credentials.GetCredentialResponse;
228 GetCredentialResponse getCredentialResponse = PendingIntentResultHandler in onCredentialEntrySelected()
H A DProviderGetSession.java28 import android.credentials.GetCredentialResponse;
195 ProviderInternalCallback<GetCredentialResponse> callbacks, in ProviderGetSession()
382 GetCredentialResponse getCredentialResponse = PendingIntentResultHandler in onCredentialEntrySelected()
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/credentials/
H A DProviderRegistryGetSessionTest.java41 import android.credentials.GetCredentialResponse;
200 final GetCredentialResponse response = in testOnUiEntrySelected_wrongEntryKey_doesNothing()
201 new GetCredentialResponse(new Credential(CREDENTIAL_TYPE, new Bundle())); in testOnUiEntrySelected_wrongEntryKey_doesNothing()
291 final ArgumentCaptor<GetCredentialResponse> getCredentialResponseCaptor = in testOnUiEntrySelected_correctEntryKeyPendingIntentResponseExists_succeeds()
292 ArgumentCaptor.forClass(GetCredentialResponse.class); in testOnUiEntrySelected_correctEntryKeyPendingIntentResponseExists_succeeds()
301 final GetCredentialResponse response = in testOnUiEntrySelected_correctEntryKeyPendingIntentResponseExists_succeeds()
302 new GetCredentialResponse(new Credential(CREDENTIAL_TYPE, new Bundle())); in testOnUiEntrySelected_correctEntryKeyPendingIntentResponseExists_succeeds()
/aosp14/frameworks/base/core/tests/coretests/src/android/credentials/
H A DCredentialManagerTest.java201 OutcomeReceiver<GetCredentialResponse, GetCredentialException> callback = in testGetCredential_noCredential()
235 OutcomeReceiver<GetCredentialResponse, GetCredentialException> callback = in testGetCredential_cancel()
256 ArgumentCaptor<GetCredentialResponse> responseCaptor = in testGetCredential_success()
257 ArgumentCaptor.forClass(GetCredentialResponse.class); in testGetCredential_success()
259 OutcomeReceiver<GetCredentialResponse, GetCredentialException> callback = in testGetCredential_success()
268 callbackCaptor.getValue().onResponse(new GetCredentialResponse(cred)); in testGetCredential_success()
/aosp14/frameworks/base/core/java/android/service/credentials/
H A DCredentialEntry.java25 import android.credentials.GetCredentialResponse;
/aosp14/frameworks/base/core/api/
H A Dcurrent.txt13656 …Executor, @NonNull android.os.OutcomeReceiver<android.credentials.GetCredentialResponse,android.cr…
13657 …Executor, @NonNull android.os.OutcomeReceiver<android.credentials.GetCredentialResponse,android.cr…
13715 public final class GetCredentialResponse implements android.os.Parcelable {
13716 ctor public GetCredentialResponse(@NonNull android.credentials.Credential);
13720 …blic static final android.os.Parcelable.Creator<android.credentials.GetCredentialResponse> CREATOR;