HomeSort by relevance Sort by last modified time
    Searched full:accounts (Results 151 - 175 of 1365) sorted by null

1 2 3 4 5 67 8 91011>>

  /packages/apps/Settings/src/com/android/settings/accounts/
AccountHeaderPreferenceController.java 17 package com.android.settings.accounts;
19 import static com.android.settings.accounts.AccountDetailDashboardFragment.KEY_ACCOUNT;
20 import static com.android.settings.accounts.AccountDetailDashboardFragment.KEY_USER_HANDLE;
22 import android.accounts.Account;
34 import com.android.settingslib.accounts.AuthenticatorHelper;
RemoveAccountPreferenceController.java 16 package com.android.settings.accounts;
18 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;
  /packages/services/Telecomm/src/com/android/server/telecom/
TelephonyUtil.java 52 * rare case that Telephony has not registered any phone accounts yet. Details about this
77 public static void sortSimPhoneAccounts(Context context, List<PhoneAccount> accounts) {
80 // Sort the accounts according to how we want to display them.
81 Collections.sort(accounts, new Comparator<PhoneAccount>() {
86 // SIM accounts go first
  /cts/tests/tests/accounts/src/android/accounts/cts/
AbstractAuthenticatorTests.java 17 package android.accounts.cts;
19 import android.accounts.Account;
20 import android.accounts.AccountManager;
21 import android.accounts.AccountManagerFuture;
22 import android.accounts.AuthenticatorException;
23 import android.accounts.OperationCanceledException;
24 import android.accounts.cts.common.AuthenticatorContentProvider;
25 import android.accounts.cts.common.Fixtures;
26 import android.accounts.cts.common.tx.AddAccountTx;
27 import android.accounts.cts.common.tx.UpdateCredentialsTx
    [all...]
AccountDummyActivity.java 17 package android.accounts.cts;
MockAccountService.java 17 package android.accounts.cts;
  /frameworks/base/packages/Shell/tests/src/com/android/shell/
BugreportProgressServiceTest.java 27 import android.accounts.Account;
28 import android.accounts.AccountManager;
118 // No accounts.
138 // 2 accounts, same domain
149 // 2 accounts, different domains
174 * accounts. The expected results are the same as the original.
181 // Work profile has no accounts
185 // No accounts.
205 // 2 accounts, same domain
216 // 2 accounts, different domain
    [all...]
  /frameworks/base/test-runner/src/android/test/
IsolatedContext.java 19 import android.accounts.AccountManager;
20 import android.accounts.AccountManagerCallback;
21 import android.accounts.AccountManagerFuture;
22 import android.accounts.AuthenticatorException;
23 import android.accounts.OnAccountsUpdateListener;
24 import android.accounts.OperationCanceledException;
25 import android.accounts.Account;
  /packages/apps/Gallery2/src/com/android/photos/data/
PhotoDatabase.java 22 import com.android.photos.data.PhotoProvider.Accounts;
43 // Photos.ACCOUNT_ID is a foreign key to Accounts._ID
58 // Albums.ACCOUNT_ID is a foreign key to Accounts._ID
82 { Accounts._ID, "INTEGER PRIMARY KEY AUTOINCREMENT" },
83 { Accounts.ACCOUNT_NAME, "TEXT UNIQUE NOT NULL" },
88 createTable(db, Accounts.TABLE, getAccountTableDefinition());
116 dropTable(db, Accounts.TABLE);
  /cts/tests/tests/content/src/android/content/cts/
ContentResolverSyncTestCase.java 19 import android.accounts.Account;
20 import android.accounts.AccountManager;
21 import android.accounts.AccountManagerCallback;
22 import android.accounts.AccountManagerFuture;
23 import android.accounts.AuthenticatorException;
24 import android.accounts.OperationCanceledException;
353 * Test to verify that a SyncAdapter is called on all the accounts accounts
372 requestSync(null /* all accounts */, AUTHORITY, LATCH_TIMEOUT_MS);
  /development/samples/SampleSyncAdapter/
_index.html 9 href="../../../reference/android/accounts/AccountManager.html">account
18 href="../../../reference/android/accounts/AbstractAccountAuthenticator.html">
38 Accounts &amp; Sync" to view the account and change its sync settings. </p>
  /frameworks/base/core/java/android/accounts/
ChooseTypeAndAccountActivity.java 16 package android.accounts;
56 * A Parcelable ArrayList of Account objects that limits the choosable accounts to those
62 * A Parcelable ArrayList of String objects that limits the accounts to choose to those
126 // TODO Redesign flow to show NOT_VISIBLE accounts
128 // Currently NOT_VISBILE accounts are not shown at all.
182 Parcelable[] accounts = local
187 for (int i = 0; i < accounts.length; i++) {
188 mAccounts.put((Account) accounts[i], visibility.get(i));
229 // If there are no relevant accounts and only one relevant account type go directly to
280 Parcelable[] accounts = new Parcelable[mAccounts.size()] local
    [all...]
  /frameworks/base/services/core/java/com/android/server/accounts/
IAccountAuthenticatorCache.java 17 package com.android.server.accounts;
19 import android.accounts.AuthenticatorDescription;
36 * matched the specified {@link android.accounts.AuthenticatorDescription} or null
  /packages/apps/Contacts/src/com/android/contacts/preference/
DefaultAccountPreference.java 48 public void setAccounts(List<AccountInfo> accounts) {
49 mAccounts = accounts;
51 mListAdapter.setAccounts(accounts, null);
  /packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/
MockAccountTypeManager.java 18 import android.accounts.Account;
41 public MockAccountTypeManager(AccountType[] types, AccountWithDataSet[] accounts) {
43 this.mAccounts = accounts;