HomeSort by relevance Sort by last modified time
    Searched refs:accounts (Results 201 - 225 of 466) sorted by null

1 2 3 4 5 6 7 891011>>

  /packages/apps/Settings/src/com/android/settings/
MasterClear.java 21 import android.accounts.Account;
22 import android.accounts.AccountManager;
23 import android.accounts.AuthenticatorDescription;
298 LinearLayout contents = (LinearLayout)mContentView.findViewById(R.id.accounts);
315 Account[] accounts = mgr.getAccountsAsUser(profileId); local
316 final int N = accounts.length;
335 Account account = accounts[i];
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/
MainFragment.java 19 import android.accounts.Account;
20 import android.accounts.AccountManager;
21 import android.accounts.AuthenticatorDescription;
46 import com.android.settingslib.accounts.AuthenticatorHelper;
49 import com.android.tv.settings.accounts.AccountSyncFragment;
50 import com.android.tv.settings.accounts.AddAccountWithTypeActivity;
77 private static final String KEY_ACCOUNTS_CATEGORY = "accounts";
241 Account[] accounts = am.getAccountsByType(authDesc.type); local
242 if (accounts == null || accounts.length == 0)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
PbapClientService.java 19 import android.accounts.Account;
20 import android.accounts.AccountManager;
115 // Find all accounts that match the type "pbap" and delete them.
117 Account[] accounts = local
119 Log.w(TAG, "Found " + accounts.length + " unclean accounts");
120 for (Account acc : accounts) {
BluetoothPbapRequestPullPhoneBook.java 19 import android.accounts.Account;
  /packages/apps/Dialer/java/com/android/contacts/common/model/
AccountTypeManager.java 19 import android.accounts.Account;
20 import android.accounts.AccountManager;
21 import android.accounts.AuthenticatorDescription;
22 import android.accounts.OnAccountsUpdateListener;
109 * Returns the list of all accounts (if contactWritableOnly is false) or just the list of contact
110 * writable accounts (if contactWritableOnly is true).
115 /** Returns the list of accounts that are group writable. */
212 // Accounts without data sets get sorted before those that have them.
290 // Request updates when packages or accounts change
334 Collection<AccountWithDataSet> accounts,
518 Account[] accounts = mAccountManager.getAccounts(); local
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
PhoneAccountRegistrar.java 97 * -- About Users and Phone Accounts --
99 * We store all phone accounts for all users in a single place, which means that there are three
107 * phone accounts owned by them. Lets say, user B (settings) is requesting a list of phone accounts,
108 * and the list only contains phone accounts owned by user B and accounts with
113 * users for visibility before returning any phone accounts.
182 * apply only to PSTN/SIM card phone accounts so all other accounts should not have a
224 // There are no accounts, so there can be no defaul
290 List<PhoneAccount> accounts = getAllPhoneAccounts(userHandle).stream() local
985 List<PhoneAccount> accounts = new ArrayList<>(mState.accounts.size()); local
1044 public final List<PhoneAccount> accounts = new CopyOnWriteArrayList<>(); field in class:PhoneAccountRegistrar.State
    [all...]
  /development/apps/Development/src/com/android/development/
SyncAdapterDriver.java 47 import android.accounts.Account;
48 import android.accounts.AccountManager;
138 Account accounts[] = AccountManager.get(this).getAccountsByType( local
140 String[] accountNames = new String[accounts.length];
141 for (int i = 0; i < accounts.length; i++) {
142 accountNames[i] = accounts[i].name;
  /packages/apps/Email/provider_src/com/android/email/service/
EmailBroadcastProcessorService.java 19 import android.accounts.AccountManager;
158 final android.accounts.Account[] amAccounts =
161 for (android.accounts.Account amAccount: amAccounts) {
171 private static void removePeriodicSyncs(final android.accounts.Account amAccount,
187 final android.accounts.Account[] amAccounts =
189 for (android.accounts.Account amAccount : amAccounts) {
207 /** Projection used for getting sync intervals for all accounts. */
214 * Get the sync interval for all accounts, as stored in the DB.
251 // rename the account manager type for all existing accounts, so we add new ones and delete
301 * accounts are converted otherwise terrible, horrible things will happen
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accounts/
AccountSyncFragment.java 17 package com.android.tv.settings.accounts;
19 import android.accounts.Account;
20 import android.accounts.AccountManager;
41 import com.android.settingslib.accounts.AuthenticatorHelper;
244 Account[] accounts = AccountManager.get(getActivity()).getAccountsByTypeAsUser(
246 for (final Account other : accounts) {
  /cts/hostsidetests/content/test-apps/CtsSyncAccountAccessSameCertTests/src/com/android/cts/content/
CtsSyncAccountAccessSameCertTestCases.java 21 import android.accounts.Account;
22 import android.accounts.AccountManager;
53 * Tests whether a sync adapter can access accounts.
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_DirectoryTest.java 18 import android.accounts.Account;
19 import android.accounts.AccountManager;
  /frameworks/base/core/java/com/android/internal/app/
ConfirmUserCreationActivity.java 19 import android.accounts.Account;
20 import android.accounts.AccountManager;
  /packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
AccountImageChangeObserver.java 19 import android.accounts.Account;
20 import android.accounts.AccountManager;
  /packages/apps/Contacts/src/com/android/contacts/
SimImportFragment.java 252 mAccountHeaderPresenter.setAccounts(data.accounts);
253 restoreAdapterSelectedStates(data.accounts);
265 private void restoreAdapterSelectedStates(List<AccountInfo> accounts) {
270 for (AccountInfo account : accounts) {
475 final List<AccountInfo> accounts = (List<AccountInfo>) input.get(0);
477 simLoadResult.accounts = accounts;
498 public List<AccountInfo> accounts;
  /packages/apps/Contacts/src/com/android/contacts/editor/
SelectAccountDialogFragment.java 152 public void onAccountsLoaded(List<AccountInfo> accounts) {
154 "Accounts adapter should have been initialized");
155 mAccountsAdapter.setAccounts(accounts, null);
  /packages/apps/Contacts/src/com/android/contacts/util/
LocalizedNameResolver.java 19 import android.accounts.AccountManager;
20 import android.accounts.AuthenticatorDescription;
  /packages/apps/Contacts/tests/src/com/android/contacts/model/
AccountWithDataSetTest.java 98 AccountWithDataSet... accounts) {
100 List<AccountWithDataSet> list = Lists.newArrayList(accounts);
  /packages/apps/Settings/src/com/android/settings/accounts/
AccountPreference.java 17 package com.android.settings.accounts;
19 import android.accounts.Account;
AccountPreferenceBase.java 18 package com.android.settings.accounts;
35 import com.android.settingslib.accounts.AuthenticatorHelper;
SyncStateSwitchPreference.java 17 package com.android.settings.accounts;
19 import android.accounts.Account;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PhotoPriorityResolver.java 19 import android.accounts.AccountManager;
20 import android.accounts.AuthenticatorDescription;
  /cts/tests/tests/content/src/android/content/cts/
SyncStorageEngineTest.java 19 import android.accounts.Account;
49 + "<accounts>\n"
54 + "</accounts>\n").getBytes();
58 AtomicFile accountInfoFile = new AtomicFile(new File(syncDir, "accounts.xml"));
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
ContactDbUtil.java 31 import android.accounts.Account;
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
AccountTest.java 3 import android.accounts.Account;
  /frameworks/opt/vcard/java/com/android/vcard/
VCardEntryConstructor.java 18 import android.accounts.Account;

Completed in 2231 milliseconds

1 2 3 4 5 6 7 891011>>