Lines Matching refs:account

47  * <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
144 Account account, Bundle options) throws RemoteException {
146 Log.v(TAG, "confirmCredentials: " + account);
151 new AccountAuthenticatorResponse(response), account, options);
161 handleException(response, "confirmCredentials", account.toString(), e);
188 Account account, String authTokenType, Bundle loginOptions)
191 Log.v(TAG, "getAuthToken: " + account
197 new AccountAuthenticatorResponse(response), account,
208 account.toString() + "," + authTokenType, e);
212 public void updateCredentials(IAccountAuthenticatorResponse response, Account account,
215 Log.v(TAG, "updateCredentials: " + account
221 new AccountAuthenticatorResponse(response), account,
233 account.toString() + "," + authTokenType, e);
252 Account account, String[] features) throws RemoteException {
256 new AccountAuthenticatorResponse(response), account, features);
261 handleException(response, "hasFeatures", account.toString(), e);
266 Account account) throws RemoteException {
270 new AccountAuthenticatorResponse(response), account);
275 handleException(response, "getAccountRemovalAllowed", account.toString(), e);
339 * Adds an account of the specified accountType.
341 * @param accountType the type of account to add, will never be null
342 * @param authTokenType the type of auth token to retrieve after adding the account, may be null
344 * account must support, may be null
351 * the account that was added, or
363 * Checks that the user knows the credentials of an account.
365 * @param account the account whose credentials are to be checked, will never be null
379 Account account, Bundle options)
382 * Gets the authtoken for an account.
384 * @param account the account whose credentials are to be retrieved, will never be null
400 Account account, String authTokenType, Bundle options)
411 * Update the locally stored credentials for an account.
413 * @param account the account whose credentials are to be updated, will never be null
422 * the account that was added, or
430 Account account, String authTokenType, Bundle options) throws NetworkErrorException;
433 * Checks if the account supports all the specified authenticator specific features.
435 * @param account the account to check, will never be null
441 * <li> {@link AccountManager#KEY_BOOLEAN_RESULT}, true if the account has all the features,
450 Account account, String[] features) throws NetworkErrorException;
453 * Checks if the removal of this account is allowed.
455 * @param account the account to check, will never be null
460 * <li> {@link AccountManager#KEY_BOOLEAN_RESULT}, true if the removal of the account is
469 Account account) throws NetworkErrorException {