Home
last modified time | relevance | path

Searched refs:allAccounts (Results 1 – 10 of 10) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/providers/
DFolderWatcher.java81 public void updateAccountList(Account[] allAccounts) { in updateAccountList() argument
82 if (allAccounts == null) { in updateAccountList()
86 final List<Uri> newAccounts = new ArrayList<Uri>(allAccounts.length); in updateAccountList()
87 for (final Account account : allAccounts) { in updateAccountList()
DAllAccountObserver.java77 public abstract void onChanged(Account[] allAccounts); in onChanged() argument
DAccount.java539 final Account[] allAccounts = new Account[initialLength]; in getAllAccounts() local
542 allAccounts[i++] = cursor.getModel(); in getAllAccounts()
546 return allAccounts; in getAllAccounts()
/packages/services/Telecomm/src/com/android/server/telecom/
DCreateConnectionProcessor.java297 List<PhoneAccount> allAccounts = mPhoneAccountRegistrar in adjustAttemptsForEmergency() local
300 if (allAccounts.isEmpty()) { in adjustAttemptsForEmergency()
306 allAccounts = new ArrayList<PhoneAccount>(); in adjustAttemptsForEmergency()
307 allAccounts.add(TelephonyUtil.getDefaultEmergencyPhoneAccount()); in adjustAttemptsForEmergency()
311 for (PhoneAccount phoneAccount : allAccounts) { in adjustAttemptsForEmergency()
DCallsManager.java1197 List<PhoneAccountHandle> allAccounts = in constructPossiblePhoneAccounts() local
1222 allAccounts.removeAll(simAccounts); in constructPossiblePhoneAccounts()
1225 return allAccounts; in constructPossiblePhoneAccounts()
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
DAccountTypeManager.java386 final List<AccountWithDataSet> allAccounts = Lists.newArrayList(); in loadAccountsInBackground() local
490 allAccounts.add(accountWithDataSet); in loadAccountsInBackground()
502 Collections.sort(allAccounts, ACCOUNT_COMPARATOR); in loadAccountsInBackground()
510 mAccounts = allAccounts; in loadAccountsInBackground()
514 mContext, allAccounts, accountTypesByTypeAndDataSet); in loadAccountsInBackground()
/packages/services/Telephony/src/com/android/phone/settings/
DPhoneAccountSettingsFragment.java145 Preference allAccounts = getPreferenceScreen().findPreference(ALL_CALLING_ACCOUNTS_KEY); in onResume() local
147 if (allNonSimAccounts.isEmpty() && allAccounts != null) { in onResume()
148 mAccountList.removePreference(allAccounts); in onResume()
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
DFolderListFragment.java391 public void onChanged(Account[] allAccounts) { in onActivityCreated()
1348 final Account[] allAccounts = getAllAccounts(); in buildAccountListDrawerItems() local
1349 final List<DrawerItem> accountList = new ArrayList<>(allAccounts.length); in buildAccountListDrawerItems()
1352 for (final Account account : allAccounts) { in buildAccountListDrawerItems()
DAbstractActivityController.java2861 final Account[] allAccounts = Account.getAllAccounts(accounts);
2867 for (final Account account : allAccounts) {
2884 Account newAccount = allAccounts[0];
2899 for (final Account account : allAccounts) {
2914 mAllAccounts = allAccounts;
2916 return (allAccounts.length > 0);
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
DComposeActivity.java767 final Account[] allAccounts = AccountUtils.getAccounts(this); in checkValidAccounts() local
768 if (allAccounts == null || allAccounts.length == 0) { in checkValidAccounts()
777 for (Account a : allAccounts) { in checkValidAccounts()