Searched refs:accounts (Results 1 - 25 of 63) sorted by relevance

123

/frameworks/base/core/java/android/accounts/
H A DAccount.aidl17 package android.accounts;
H A DAuthenticatorDescription.aidl17 package android.accounts;
H A DOnAccountsUpdateListener.java17 package android.accounts;
26 * @param accounts the current accounts
28 void onAccountsUpdated(Account[] accounts); argument
H A DAccountManagerCallback.java16 package android.accounts;
H A DIAccountAuthenticatorResponse.aidl17 package android.accounts;
H A DIAccountManagerResponse.aidl17 package android.accounts;
H A DAccountsException.java17 package android.accounts;
H A DAuthenticatorException.java17 package android.accounts;
H A DNetworkErrorException.java16 package android.accounts;
H A DOperationCanceledException.java16 package android.accounts;
H A DAccountManagerService.java17 package android.accounts;
82 * accounts on the device. Some of these calls are implemented with the help of the corresponding
94 private static final String DATABASE_NAME = "accounts.db";
110 private static final String TABLE_ACCOUNTS = "accounts";
151 AUTHTOKENS_ACCOUNTS_ID + "=(select _id FROM accounts WHERE name=? AND type=?)";
156 EXTRAS_ACCOUNTS_ID + "=(select _id FROM accounts WHERE name=? AND type=?)";
261 UserAccounts accounts = mUsers.get(userId);
262 if (accounts == null) {
263 accounts = new UserAccounts(mContext, userId);
264 mUsers.append(userId, accounts);
280 purgeOldGrants(UserAccounts accounts) argument
320 validateAccountsInternal( UserAccounts accounts, boolean invalidateAuthenticatorCache) argument
446 readPasswordInternal(UserAccounts accounts, Account account) argument
530 addAccountInternal(UserAccounts accounts, Account account, String password, Bundle extras) argument
612 TestFeaturesSession(UserAccounts accounts, IAccountManagerResponse response, Account account, String[] features) argument
694 RemoveAccountSession(UserAccounts accounts, IAccountManagerResponse response, Account account) argument
741 removeAccountInternal(UserAccounts accounts, Account account) argument
778 invalidateAuthTokenLocked(UserAccounts accounts, SQLiteDatabase db, String accountType, String authToken) argument
808 saveAuthTokenToDatabase(UserAccounts accounts, Account account, String type, String authToken) argument
897 setPasswordInternal(UserAccounts accounts, Account account, String password) argument
964 setUserdataInternal(UserAccounts accounts, Account account, String key, String value) argument
1242 getSigninRequiredNotificationId(UserAccounts accounts, Account account) argument
1411 GetAccountsByTypeAndFeatureSession(UserAccounts accounts, IAccountManagerResponse response, String type, String[] features) argument
1666 Session(UserAccounts accounts, IAccountManagerResponse response, String accountType, boolean expectActivityLaunch, boolean stripAuthTokenFromResult) argument
2130 doNotification(UserAccounts accounts, Account account, CharSequence message, Intent intent, int userId) argument
2392 removeAccountFromCacheLocked(UserAccounts accounts, Account account) argument
2416 insertAccountIntoCacheLocked(UserAccounts accounts, Account account) argument
2454 writeUserDataIntoCacheLocked(UserAccounts accounts, final SQLiteDatabase db, Account account, String key, String value) argument
2468 writeAuthTokenIntoCacheLocked(UserAccounts accounts, final SQLiteDatabase db, Account account, String key, String value) argument
2482 readAuthTokenInternal(UserAccounts accounts, Account account, String authTokenType) argument
2496 readUserDataInternal(UserAccounts accounts, Account account, String key) argument
[all...]
H A DIAccountAuthenticator.aidl17 package android.accounts;
19 import android.accounts.IAccountAuthenticatorResponse;
20 import android.accounts.Account;
H A DAccountAndUser.java17 package android.accounts;
H A DAccountManagerFuture.java16 package android.accounts;
89 * @throws android.accounts.OperationCanceledException if the request was canceled for any
91 * @throws android.accounts.AuthenticatorException if there was an error communicating with
108 * @throws android.accounts.OperationCanceledException if the request was canceled for any
110 * @throws android.accounts.AuthenticatorException if there was an error communicating with
H A DAccountAuthenticatorActivity.java17 package android.accounts;
H A DIAccountAuthenticatorCache.java17 package android.accounts;
35 * matched the specified {@link android.accounts.AuthenticatorDescription} or null
H A DIAccountManager.aidl17 package android.accounts;
19 import android.accounts.IAccountManagerResponse;
20 import android.accounts.Account;
21 import android.accounts.AuthenticatorDescription;
H A DChooseTypeAndAccountActivity.java16 package android.accounts;
49 * A Parcelable ArrayList of Account objects that limits the choosable accounts to those
55 * A Parcelable ArrayList of String objects that limits the accounts to choose to those
179 // If there are no relevant accounts and only one relevant account type go directly to
404 * @return a value between 0 (inclusive) and accounts.size() (inclusive) or SELECTED_ITEM_NONE.
405 * An index value of accounts.size() indicates 'Add account' option.
407 private int getItemIndexToSelect(ArrayList<Account> accounts, String selectedAccountName, argument
412 return accounts.size();
415 for (int i = 0; i < accounts.size(); i++) {
416 if (accounts
424 getListOfDisplayableOptions(ArrayList<Account> accounts) argument
[all...]
/frameworks/ex/chips/src/com/android/ex/chips/
H A DAccountSpecifier.java19 import android.accounts.Account;
/frameworks/base/core/tests/coretests/src/android/accounts/
H A DAccountManagerServiceTest.java17 package android.accounts;
83 Account[] accounts = mAms.getAccounts(null);
84 Arrays.sort(accounts, new AccountSorter());
85 assertEquals(6, accounts.length);
86 assertEquals(a11, accounts[0]);
87 assertEquals(a21, accounts[1]);
88 assertEquals(a31, accounts[2]);
89 assertEquals(a12, accounts[3]);
90 assertEquals(a22, accounts[4]);
91 assertEquals(a32, accounts[
[all...]
/frameworks/base/core/java/android/content/
H A DISyncAdapter.aidl19 import android.accounts.Account;
/frameworks/support/volley/src/com/android/volley/toolbox/
H A DAndroidAuthenticator.java21 import android.accounts.Account;
22 import android.accounts.AccountManager;
23 import android.accounts.AccountManagerFuture;
/frameworks/base/test-runner/src/android/test/
H A DIsolatedContext.java21 import android.accounts.AccountManager;
22 import android.accounts.AccountManagerCallback;
23 import android.accounts.AccountManagerFuture;
24 import android.accounts.AuthenticatorException;
25 import android.accounts.OnAccountsUpdateListener;
26 import android.accounts.OperationCanceledException;
27 import android.accounts.Account;
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardAccountView.java18 import android.accounts.Account;
19 import android.accounts.AccountManager;
20 import android.accounts.AccountManagerCallback;
21 import android.accounts.AccountManagerFuture;
22 import android.accounts.AuthenticatorException;
23 import android.accounts.OperationCanceledException;
225 Account[] accounts = AccountManager.get(mContext).getAccountsByTypeAsUser("com.google",
234 for (Account a: accounts) {
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DAccountUnlockScreen.java22 import android.accounts.Account;
23 import android.accounts.AccountManager;
24 import android.accounts.OperationCanceledException;
25 import android.accounts.AccountManagerFuture;
26 import android.accounts.AuthenticatorException;
27 import android.accounts.AccountManagerCallback;
233 Account[] accounts = AccountManager.get(mContext).getAccountsByType("com.google");
241 for (Account a: accounts) {

Completed in 434 milliseconds

123