Searched defs:AccountEntry (Results 1 - 2 of 2) sorted by relevance

/packages/services/Telephony/sip/src/com/android/services/telephony/sip/
H A DSipAccountRegistry.java37 private final class AccountEntry { class in class:SipAccountRegistry
40 AccountEntry(SipProfile profile) { method in class:SipAccountRegistry.AccountEntry
107 private final List<AccountEntry> mAccounts = new CopyOnWriteArrayList<>();
138 AccountEntry accountEntry = getAccountEntry(sipUri);
147 * Called after a SIP profile is deleted. The {@link AccountEntry} will be removed when the
157 AccountEntry accountEntry = getAccountEntry(sipUri);
236 * Starts the SIP service for a sip profile and saves a new {@code AccountEntry} in the
249 AccountEntry entry = new AccountEntry(profile);
256 * Retrieves the {@link AccountEntry} fro
[all...]
/packages/services/Telephony/src/com/android/services/telephony/
H A DTelecomAccountRegistry.java66 private final class AccountEntry { class in class:TelecomAccountRegistry
71 AccountEntry(Phone phone, boolean isEmergency, boolean isDummy) { method in class:TelecomAccountRegistry.AccountEntry
217 private List<AccountEntry> mAccounts = new LinkedList<AccountEntry>();
264 * Determines if the list of {@link AccountEntry}(s) contains an {@link AccountEntry} with a
271 for (AccountEntry entry : mAccounts) {
281 * {@code AccountEntry}(s).
305 mAccounts.add(new AccountEntry(phone, false /* emergency */, false /* isDummy */));
313 mAccounts.add(new AccountEntry(PhoneFactor
[all...]

Completed in 343 milliseconds