Home
last modified time | relevance | path

Searched refs:AccountEntry (Results 1 – 2 of 2) sorted by relevance

/packages/services/Telephony/src/com/android/services/telephony/
DTelecomAccountRegistry.java81 final class AccountEntry implements PstnPhoneCapabilitiesNotifier.Listener { class in TelecomAccountRegistry
104 AccountEntry(Phone phone, boolean isEmergency, boolean isDummy) { in AccountEntry() method in TelecomAccountRegistry.AccountEntry
832 for (AccountEntry account : mAccounts) {
844 for (AccountEntry account : mAccounts) {
856 private List<AccountEntry> mAccounts = new LinkedList<AccountEntry>();
900 for (AccountEntry entry : mAccounts) { in isVideoPauseSupported()
918 for (AccountEntry entry : mAccounts) { in isMergeCallSupported()
936 for (AccountEntry entry : mAccounts) { in isVideoConferencingSupported()
954 Optional<AccountEntry> result = mAccounts.stream().filter( in isMergeOfWifiCallsAllowedWhenVoWifiOff()
974 for (AccountEntry entry : mAccounts) { in isMergeImsCallSupported()
[all …]
/packages/services/Telephony/sip/src/com/android/services/telephony/sip/
DSipAccountRegistry.java36 private final class AccountEntry { class in SipAccountRegistry
39 AccountEntry(SipProfile profile) { in AccountEntry() method in SipAccountRegistry.AccountEntry
106 private final List<AccountEntry> mAccounts = new CopyOnWriteArrayList<>();
164 AccountEntry accountEntry = getAccountEntry(sipProfileName); in removeSipProfile()
183 AccountEntry accountEntry = getAccountEntry(sipProfileName); in stopSipService()
271 AccountEntry entry = new AccountEntry(profile); in startSipServiceForProfile()
283 private AccountEntry getAccountEntry(String sipProfileName) { in getAccountEntry()
284 for (AccountEntry entry : mAccounts) { in getAccountEntry()