Searched defs:accountType (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/content/
H A DSyncAdapterType.java29 public final String accountType; field in class:SyncAdapterType
34 public SyncAdapterType(String authority, String accountType, boolean userVisible, argument
39 if (TextUtils.isEmpty(accountType)) {
40 throw new IllegalArgumentException("the accountType must not be empty: " + accountType);
43 this.accountType = accountType;
49 private SyncAdapterType(String authority, String accountType) { argument
53 if (TextUtils.isEmpty(accountType)) {
54 throw new IllegalArgumentException("the accountType mus
79 newKey(String authority, String accountType) argument
[all...]
/frameworks/base/core/java/android/accounts/
H A DAbstractAccountAuthenticator.java49 * android:accountType="typeOfAuthenticator"
56 * Replace the icons and labels with your own resources. The <code>android:accountType</code>
119 public void addAccount(IAccountAuthenticatorResponse response, String accountType, argument
123 Log.v(TAG, "addAccount: accountType " + accountType
131 accountType, authTokenType, features, options);
285 String accountType) throws RemoteException {
289 new AccountAuthenticatorResponse(response), accountType);
358 * @param accountType the AccountType whose properties are to be edited.
364 String accountType);
284 editProperties(IAccountAuthenticatorResponse response, String accountType) argument
363 editProperties(AccountAuthenticatorResponse response, String accountType) argument
386 addAccount(AccountAuthenticatorResponse response, String accountType, String authTokenType, String[] requiredFeatures, Bundle options) argument
[all...]
H A DAccountManager.java159 public static final String KEY_ACCOUNT_TYPE = "accountType";
564 * @param accountType The account type of the auth token to invalidate, must not be null
567 public void invalidateAuthToken(final String accountType, final String authToken) { argument
568 if (accountType == null) throw new IllegalArgumentException("accountType is null");
571 mService.invalidateAuthToken(accountType, authToken);
913 * @param accountType The type of account to add; must not be null
949 public AccountManagerFuture<Bundle> addAccount(final String accountType, argument
953 if (accountType == null) throw new IllegalArgumentException("accountType i
1127 editProperties(final String accountType, final Activity activity, final AccountManagerCallback<Bundle> callback, final Handler handler) argument
1460 GetAuthTokenByTypeAndFeaturesTask(final String accountType, final String authTokenType, final String[] features, Activity activityForPrompting, final Bundle addAccountOptions, final Bundle loginOptions, AccountManagerCallback<Bundle> callback, Handler handler) argument
1652 getAuthTokenByFeatures( final String accountType, final String authTokenType, final String[] features, final Activity activity, final Bundle addAccountOptions, final Bundle getAuthTokenOptions, final AccountManagerCallback<Bundle> callback, final Handler handler) argument
[all...]
H A DAccountManagerService.java243 final String accountType = cursor.getString(1);
245 if (mAuthenticatorCache.getServiceInfo(AuthenticatorDescription.newKey(accountType))
248 + accountType + " no longer has a registered authenticator");
270 final String accountType = cursor.getString(1);
273 + accountType + " no longer has a registered authenticator");
368 public Account[] getAccountsByType(String accountType) { argument
371 final String selection = accountType == null ? null : (ACCOUNTS_TYPE + "=?");
372 final String[] selectionArgs = accountType == null ? null : new String[]{accountType};
589 public void invalidateAuthToken(String accountType, Strin argument
608 invalidateAuthToken(SQLiteDatabase db, String accountType, String authToken) argument
998 getAccountLabel(String accountType) argument
1064 addAcount(final IAccountManagerResponse response, final String accountType, final String authTokenType, final String[] requiredFeatures, final boolean expectActivityLaunch, final Bundle options) argument
1142 editProperties(IAccountManagerResponse response, final String accountType, final boolean expectActivityLaunch) argument
1334 Session(IAccountManagerResponse response, String accountType, boolean expectActivityLaunch, boolean stripAuthTokenFromResult) argument
1842 hasAuthenticatorUid(String accountType, int callingUid) argument
[all...]

Completed in 84 milliseconds