Searched defs:getAuthToken (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/accounts/
H A DAbstractAccountAuthenticator.java187 public void getAuthToken(IAccountAuthenticatorResponse response, method in class:AbstractAccountAuthenticator.Transport
191 Log.v(TAG, "getAuthToken: " + account
196 final Bundle result = AbstractAccountAuthenticator.this.getAuthToken(
201 Log.v(TAG, "getAuthToken: result " + AccountManager.sanitizeResult(result));
207 handleException(response, "getAuthToken",
399 public abstract Bundle getAuthToken(AccountAuthenticatorResponse response, method in class:AbstractAccountAuthenticator
H A DAccountManager.java95 * {@link #getAuthToken} methods or related helpers. Refer to the description
165 * from {@link #getAuthToken} and friends.
601 * @param authTokenType The type of auth token to fetch, see {#getAuthToken}
704 * @param authTokenType The type of the auth token, see {#getAuthToken}
720 * {@link #getAuthToken(Account, String, boolean, AccountManagerCallback, Handler)}.
729 * @param authTokenType The auth token type, see {#link getAuthToken}
746 Bundle bundle = getAuthToken(account, authTokenType, notifyAuthFailure, null /* callback */,
815 public AccountManagerFuture<Bundle> getAuthToken( method in class:AccountManager
827 mService.getAuthToken(mResponse, account, authTokenType,
901 * @deprecated use {@link #getAuthToken(Accoun
905 public AccountManagerFuture<Bundle> getAuthToken( method in class:AccountManager
983 public AccountManagerFuture<Bundle> getAuthToken( method in class:AccountManager
[all...]
H A DAccountManagerService.java907 public void getAuthToken(IAccountManagerResponse response, final Account account, method in class:AccountManagerService
911 Log.v(TAG, "getAuthToken: " + account
963 return super.toDebugString(now) + ", getAuthToken"
972 // "grant permission" intent instead of the "getAuthToken" intent.
976 mAuthenticator.getAuthToken(this, account, authTokenType, loginOptions);

Completed in 75 milliseconds