Home | History | Annotate | Download | only in accounts

Lines Matching defs:AccountAuthenticatorResponse

28 public class AccountAuthenticatorResponse implements Parcelable {
36 public AccountAuthenticatorResponse(IAccountAuthenticatorResponse response) {
40 public AccountAuthenticatorResponse(Parcel parcel) {
48 Log.v(TAG, "AccountAuthenticatorResponse.onResult: "
60 Log.v(TAG, "AccountAuthenticatorResponse.onRequestContinued");
71 Log.v(TAG, "AccountAuthenticatorResponse.onError: " + errorCode + ", " + errorMessage);
88 public static final Creator<AccountAuthenticatorResponse> CREATOR =
89 new Creator<AccountAuthenticatorResponse>() {
90 public AccountAuthenticatorResponse createFromParcel(Parcel source) {
91 return new AccountAuthenticatorResponse(source);
94 public AccountAuthenticatorResponse[] newArray(int size) {
95 return new AccountAuthenticatorResponse[size];