/frameworks/opt/net/ims/tests/src/com/android/ims/rcs/uce/presence/publish/ |
D | DeviceCapabilityInfoTest.java | 36 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/ |
D | PhoneAccount.java | 54 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 …]
|
D | PhoneAccount.aidl | 22 parcelable PhoneAccount;
|
D | TelecomManager.java | 1450 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()
|
D | DefaultDialerManager.java | 172 dialIntentWithTelScheme.setData(Uri.fromParts(PhoneAccount.SCHEME_TEL, "", null)); in getInstalledDialerApplications()
|
D | Log.java | 444 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/ |
D | ITelecomService.aidl | 26 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/ |
D | NormalCallDomainSelectionConnection.java | 24 import android.telecom.PhoneAccount; 119 .setAddress(Uri.fromParts(PhoneAccount.SCHEME_TEL, number, null)) in getSelectionAttributes()
|
D | EmergencyCallDomainSelectionConnection.java | 32 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/ |
D | CrossDeviceSyncController.java | 34 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 …]
|
D | CallMetadataSyncConnectionService.java | 27 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/ |
D | CrossDeviceSyncControllerTest.java | 32 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/ |
D | Rlog.java | 20 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/ |
D | BtSmsInterfaceManager.java | 27 import android.telecom.PhoneAccount; 95 .scheme(PhoneAccount.SCHEME_TEL) in MapMessageSender()
|
D | MissedIncomingCallSmsFilter.java | 27 import android.telecom.PhoneAccount; 267 PhoneAccount.SCHEME_TEL, callerId, null); in createMissedIncomingCallEvent()
|
D | GsmCdmaPhone.java | 69 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/ |
D | ImsExternalConnection.java | 23 import android.telecom.PhoneAccount; 243 if (PhoneAccount.SCHEME_SIP.equals(address.getScheme())) { in setExternalConnectionAddress()
|
/frameworks/opt/net/ims/src/java/com/android/ims/internal/ |
D | ConferenceParticipant.java | 23 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/ |
D | DeviceCapabilityInfo.java | 23 import android.telecom.PhoneAccount; 306 if (PhoneAccount.SCHEME_TEL.equalsIgnoreCase(rcsAssociatedUri.getScheme())) { in getImsAssociatedUri() 313 if (PhoneAccount.SCHEME_TEL.equalsIgnoreCase(mmtelAssociatedUri.getScheme())) { in getImsAssociatedUri()
|
D | PublishUtils.java | 21 import android.telecom.PhoneAccount;
|
/frameworks/base/core/java/android/provider/ |
D | VoicemailContract.java | 30 import android.telecom.PhoneAccount;
|
D | CallLog.java | 52 import android.telecom.PhoneAccount; 2212 PhoneAccount account = tm.getPhoneAccount(accountHandle); in getLogAccountAddress()
|
/frameworks/proto_logging/stats/enums/telecomm/ |
D | enums.proto | 45 * {@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/ |
D | DomainSelectionConnectionTest.java | 43 import android.telecom.PhoneAccount; 822 builder.setAddress(Uri.fromParts(PhoneAccount.SCHEME_TEL, number, null)); in getSelectionAttributes()
|
/frameworks/base/telephony/java/android/telephony/ |
D | PhoneNumberUtils.java | 35 import android.telecom.PhoneAccount; 2454 if (!PhoneAccount.SCHEME_SIP.equals(scheme)) { in convertSipUriToTelUri() 2468 return Uri.fromParts(PhoneAccount.SCHEME_TEL, number, null); in convertSipUriToTelUri()
|