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.java155 public static final String KEY_ACCOUNT_TYPE = "accountType";
542 * @param accountType The account type of the auth token to invalidate, must not be null
545 public void invalidateAuthToken(final String accountType, final String authToken) { argument
546 if (accountType == null) throw new IllegalArgumentException("accountType is null");
549 mService.invalidateAuthToken(accountType, authToken);
888 * @param accountType The type of account to add; must not be null
925 public AccountManagerFuture<Bundle> addAccount(final String accountType, argument
929 if (accountType == null) throw new IllegalArgumentException("accountType i
1105 editProperties(final String accountType, final Activity activity, final AccountManagerCallback<Bundle> callback, final Handler handler) argument
1438 GetAuthTokenByTypeAndFeaturesTask(final String accountType, final String authTokenType, final String[] features, Activity activityForPrompting, final Bundle addAccountOptions, final Bundle loginOptions, AccountManagerCallback<Bundle> callback, Handler handler) argument
1630 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.java242 final String accountType = cursor.getString(1);
244 if (mAuthenticatorCache.getServiceInfo(AuthenticatorDescription.newKey(accountType))
247 + accountType + " no longer has a registered authenticator");
269 final String accountType = cursor.getString(1);
272 + accountType + " no longer has a registered authenticator");
367 public Account[] getAccountsByType(String accountType) { argument
370 final String selection = accountType == null ? null : (ACCOUNTS_TYPE + "=?");
371 final String[] selectionArgs = accountType == null ? null : new String[]{accountType};
576 public void invalidateAuthToken(String accountType, Strin argument
595 invalidateAuthToken(SQLiteDatabase db, String accountType, String authToken) argument
977 addAcount(final IAccountManagerResponse response, final String accountType, final String authTokenType, final String[] requiredFeatures, final boolean expectActivityLaunch, final Bundle options) argument
1055 editProperties(IAccountManagerResponse response, final String accountType, final boolean expectActivityLaunch) argument
1247 Session(IAccountManagerResponse response, String accountType, boolean expectActivityLaunch, boolean stripAuthTokenFromResult) argument
1838 hasAuthenticatorUid(String accountType, int callingUid) argument
[all...]

Completed in 518 milliseconds