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.java109 final class AccountEntry implements PstnPhoneCapabilitiesNotifier.Listener { class in TelecomAccountRegistry
134 AccountEntry(Phone phone, boolean isEmergency, boolean isDummy) { in AccountEntry() method in TelecomAccountRegistry.AccountEntry
1051 for (AccountEntry account : mAccounts) {
1063 for (AccountEntry account : mAccounts) {
1076 private List<AccountEntry> mAccounts = new LinkedList<AccountEntry>();
1143 for (AccountEntry entry : mAccounts) { in isVideoPauseSupported()
1161 for (AccountEntry entry : mAccounts) { in isMergeCallSupported()
1179 for (AccountEntry entry : mAccounts) { in isVideoConferencingSupported()
1197 Optional<AccountEntry> result = mAccounts.stream().filter( in isMergeOfWifiCallsAllowedWhenVoWifiOff()
1217 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()
272 AccountEntry entry = new AccountEntry(profile); in startSipServiceForProfile()
284 private AccountEntry getAccountEntry(String sipProfileName) { in getAccountEntry()
285 for (AccountEntry entry : mAccounts) { in getAccountEntry()