HomeSort by relevance Sort by last modified time
    Searched refs:accountEntry (Results 1 - 2 of 2) sorted by null

  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipAccountRegistry.java 37 private final class AccountEntry {
40 AccountEntry(SipProfile profile) {
107 private final List<AccountEntry> mAccounts = new CopyOnWriteArrayList<>();
138 AccountEntry accountEntry = getAccountEntry(sipUri);
140 if (accountEntry != null) {
141 mAccounts.remove(accountEntry);
147 * Called after a SIP profile is deleted. The {@link AccountEntry} will be removed when the
157 AccountEntry accountEntry = getAccountEntry(sipUri)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
MailAppProvider.java 217 for (AccountCacheEntry accountEntry : accountList) {
218 final Account account = accountEntry.mAccount;
305 private void addAccountImpl(Uri key, AccountCacheEntry accountEntry) {
307 LogUtils.v(LOG_TAG, "adding account %s", accountEntry.mAccount);
309 mAccountCache.put(key, accountEntry);
372 final AccountCacheEntry accountEntry = new AccountCacheEntry(
375 if (accountEntry.mAccount.settings == null) {
380 Account account = accountEntry.mAccount;
385 addAccountImpl(account.uri, accountEntry);
408 for (AccountCacheEntry accountEntry : accountList)
    [all...]

Completed in 1726 milliseconds