Home
last modified time | relevance | path

Searched refs:PhoneAccount (Results 1 – 25 of 38) sorted by relevance

12

/frameworks/opt/net/ims/tests/src/com/android/ims/rcs/uce/presence/publish/
DDeviceCapabilityInfoTest.java36 import android.telecom.PhoneAccount;
97 uris[0] = Uri.fromParts(PhoneAccount.SCHEME_SIP, sipNumber, null); in testGetImsAssociatedUriWithoutPreferTelUri()
98 uris[1] = Uri.fromParts(PhoneAccount.SCHEME_TEL, telNumber, null); in testGetImsAssociatedUriWithoutPreferTelUri()
115 uris[0] = Uri.fromParts(PhoneAccount.SCHEME_TEL, telNumber, null); in testGetImsAssociatedUriWithoutPreferTelUri()
116 uris[1] = Uri.fromParts(PhoneAccount.SCHEME_SIP, sipNumber, null); in testGetImsAssociatedUriWithoutPreferTelUri()
151 uris[0] = Uri.fromParts(PhoneAccount.SCHEME_SIP, sipNumber, null); in testGetImsAssociatedUriWithPreferTelUri()
152 uris[1] = Uri.fromParts(PhoneAccount.SCHEME_TEL, telNumber, null); in testGetImsAssociatedUriWithPreferTelUri()
168 uris[0] = Uri.fromParts(PhoneAccount.SCHEME_TEL, telNumber, null); in testGetImsAssociatedUriWithPreferTelUri()
169 uris[1] = Uri.fromParts(PhoneAccount.SCHEME_SIP, sipNumber, null); in testGetImsAssociatedUriWithPreferTelUri()
184 uris[0] = Uri.fromParts(PhoneAccount.SCHEME_SIP, telNumber, null); in testGetImsAssociatedUriWithPreferTelUri()
[all …]
/frameworks/base/telecomm/java/android/telecom/
DPhoneAccount.java54 public final class PhoneAccount implements Parcelable { class
507 PhoneAccount that = (PhoneAccount) o; in equals()
571 public Builder(PhoneAccount phoneAccount) { in Builder()
862 public PhoneAccount build() { in build()
868 return new PhoneAccount( in build()
886 private PhoneAccount( in PhoneAccount() method in PhoneAccount
1220 public static final @android.annotation.NonNull Creator<PhoneAccount> CREATOR
1221 = new Creator<PhoneAccount>() {
1223 public PhoneAccount createFromParcel(Parcel in) {
1224 return new PhoneAccount(in);
[all …]
DPhoneAccount.aidl22 parcelable PhoneAccount;
DTelecomManager.java1450 public @NonNull List<PhoneAccount> getRegisteredPhoneAccounts() { in getRegisteredPhoneAccounts()
1555 public PhoneAccount getPhoneAccount(PhoneAccountHandle account) { in getPhoneAccount()
1593 public List<PhoneAccount> getAllPhoneAccounts() { in getAllPhoneAccounts()
1663 public void registerPhoneAccount(PhoneAccount account) { in registerPhoneAccount()
2646 intent.setData(Uri.fromParts(PhoneAccount.SCHEME_TEL, number, null)); in createLaunchEmergencyDialerIntent()
DDefaultDialerManager.java172 dialIntentWithTelScheme.setData(Uri.fromParts(PhoneAccount.SCHEME_TEL, "", null)); in getInstalledDialerApplications()
DLog.java444 if (PhoneAccount.SCHEME_TEL.equals(scheme)) { in piiHandle()
446 } else if (PhoneAccount.SCHEME_SIP.equals(scheme)) { in piiHandle()
/frameworks/base/telecomm/java/com/android/internal/telecom/
DITelecomService.aidl26 import android.telecom.PhoneAccount;
93 PhoneAccount getPhoneAccount(in PhoneAccountHandle account, String callingPackage); in getPhoneAccount()
98 ParceledListSlice<PhoneAccount> getRegisteredPhoneAccounts(String callingPackage, in getRegisteredPhoneAccounts()
109 ParceledListSlice<PhoneAccount> getAllPhoneAccounts(); in getAllPhoneAccounts()
129 void registerPhoneAccount(in PhoneAccount metadata, String callingPackage); in registerPhoneAccount()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/domainselection/
DNormalCallDomainSelectionConnection.java24 import android.telecom.PhoneAccount;
119 .setAddress(Uri.fromParts(PhoneAccount.SCHEME_TEL, number, null)) in getSelectionAttributes()
DEmergencyCallDomainSelectionConnection.java32 import android.telecom.PhoneAccount;
240 .setAddress(Uri.fromParts(PhoneAccount.SCHEME_TEL, number, null)) in getSelectionAttributes()
/frameworks/base/services/companion/java/com/android/server/companion/datatransfer/contextsync/
DCrossDeviceSyncController.java34 import android.telecom.PhoneAccount;
275 telecomManager.getDefaultOutgoingPhoneAccount(PhoneAccount.SCHEME_TEL); in onBootCompleted()
277 final PhoneAccount defaultOutgoingTelAccount = telecomManager.getPhoneAccount( in onBootCompleted()
296 PhoneAccount.SCHEME_TEL)) { in processCallCreateRequests()
299 final Uri uri = Uri.fromParts(PhoneAccount.SCHEME_TEL, in processCallCreateRequests()
775 mTelecomManager.placeCall(Uri.fromParts(PhoneAccount.SCHEME_SIP, in updateCalls()
881 final PhoneAccount phoneAccount = createPhoneAccount(handle, humanReadableAppName, in registerPhoneAccount()
897 static PhoneAccount createPhoneAccount(PhoneAccountHandle handle, in createPhoneAccount()
905 return new PhoneAccount.Builder(handle, humanReadableAppName) in createPhoneAccount()
907 .setSupportedUriSchemes(List.of(isTel ? PhoneAccount.SCHEME_TEL in createPhoneAccount()
[all …]
DCallMetadataSyncConnectionService.java27 import android.telecom.PhoneAccount;
166 final PhoneAccount phoneAccount = mTelecomManager.getPhoneAccount(handle); in onCreateOutgoingConnection()
/frameworks/base/services/tests/servicestests/src/com/android/server/companion/datatransfer/contextsync/
DCrossDeviceSyncControllerTest.java32 import android.telecom.PhoneAccount;
166 final PhoneAccount phoneAccount = in createPhoneAccount_sip_success()
173 .that(phoneAccount.supportsUriScheme(PhoneAccount.SCHEME_TEL)).isFalse(); in createPhoneAccount_sip_success()
175 .that(phoneAccount.supportsUriScheme(PhoneAccount.SCHEME_SIP)).isTrue(); in createPhoneAccount_sip_success()
180 final PhoneAccount phoneAccount = in createPhoneAccount_tel_success()
187 .that(phoneAccount.supportsUriScheme(PhoneAccount.SCHEME_TEL)).isTrue(); in createPhoneAccount_tel_success()
189 .that(phoneAccount.supportsUriScheme(PhoneAccount.SCHEME_SIP)).isFalse(); in createPhoneAccount_tel_success()
/frameworks/base/telephony/java/com/android/telephony/
DRlog.java20 import android.telecom.PhoneAccount;
151 if (PhoneAccount.SCHEME_TEL.equals(scheme)) { in piiHandle()
153 } else if (PhoneAccount.SCHEME_SIP.equals(scheme)) { in piiHandle()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DBtSmsInterfaceManager.java27 import android.telecom.PhoneAccount;
95 .scheme(PhoneAccount.SCHEME_TEL) in MapMessageSender()
DMissedIncomingCallSmsFilter.java27 import android.telecom.PhoneAccount;
267 PhoneAccount.SCHEME_TEL, callerId, null); in createMissedIncomingCallEvent()
DGsmCdmaPhone.java69 import android.telecom.PhoneAccount;
2649 Uri.fromParts(PhoneAccount.SCHEME_TEL, cfNumber, null), extras); in setCallForwardingOption()
2910 Uri.fromParts(PhoneAccount.SCHEME_TEL, cwPrefix, null), extras); in setCallWaiting()
5065 final PhoneAccount phoneAccount = telecomManager.getPhoneAccount(phoneAccountHandle); in subscriptionIdToPhoneAccountHandle()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsExternalConnection.java23 import android.telecom.PhoneAccount;
243 if (PhoneAccount.SCHEME_SIP.equals(address.getScheme())) { in setExternalConnectionAddress()
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
DConferenceParticipant.java23 import android.telecom.PhoneAccount;
354 return Uri.fromParts(PhoneAccount.SCHEME_TEL, in getParticipantAddress()
/frameworks/opt/net/ims/src/java/com/android/ims/rcs/uce/presence/publish/
DDeviceCapabilityInfo.java23 import android.telecom.PhoneAccount;
306 if (PhoneAccount.SCHEME_TEL.equalsIgnoreCase(rcsAssociatedUri.getScheme())) { in getImsAssociatedUri()
313 if (PhoneAccount.SCHEME_TEL.equalsIgnoreCase(mmtelAssociatedUri.getScheme())) { in getImsAssociatedUri()
DPublishUtils.java21 import android.telecom.PhoneAccount;
/frameworks/base/core/java/android/provider/
DVoicemailContract.java30 import android.telecom.PhoneAccount;
DCallLog.java52 import android.telecom.PhoneAccount;
2212 PhoneAccount account = tm.getPhoneAccount(accountHandle); in getLogAccountAddress()
/frameworks/proto_logging/stats/enums/telecomm/
Denums.proto45 * {@link android.telecom.PhoneAccount} through which to place the call.
189 * again without a connection manager. See {@link PhoneAccount#CAPABILITY_CONNECTION_MANAGER}.
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/domainselection/
DDomainSelectionConnectionTest.java43 import android.telecom.PhoneAccount;
822 builder.setAddress(Uri.fromParts(PhoneAccount.SCHEME_TEL, number, null)); in getSelectionAttributes()
/frameworks/base/telephony/java/android/telephony/
DPhoneNumberUtils.java35 import android.telecom.PhoneAccount;
2454 if (!PhoneAccount.SCHEME_SIP.equals(scheme)) { in convertSipUriToTelUri()
2468 return Uri.fromParts(PhoneAccount.SCHEME_TEL, number, null); in convertSipUriToTelUri()

12