/frameworks/base/telecomm/java/com/android/internal/telecom/ |
D | ClientTransactionalServiceRepository.java | 41 PhoneAccountHandle phoneAccountHandle) { in addNewCallForTransactionalServiceWrapper() argument 44 if (!hasExistingServiceWrapper(phoneAccountHandle)) { in addNewCallForTransactionalServiceWrapper() 45 service = new ClientTransactionalServiceWrapper(phoneAccountHandle, this); in addNewCallForTransactionalServiceWrapper() 47 service = getTransactionalServiceWrapper(phoneAccountHandle); in addNewCallForTransactionalServiceWrapper() 50 LOOKUP_TABLE.put(phoneAccountHandle, service); in addNewCallForTransactionalServiceWrapper()
|
D | ITelecomService.aidl | 329 boolean isIncomingCallPermitted(in PhoneAccountHandle phoneAccountHandle, in isIncomingCallPermitted() argument 335 boolean isOutgoingCallPermitted(in PhoneAccountHandle phoneAccountHandle, in isOutgoingCallPermitted() argument
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | VisualVoicemailSmsFilter.java | 151 PhoneAccountHandle phoneAccountHandle = sPhoneAccountHandleConverter.fromSubId(subId, in filter() local 154 if (phoneAccountHandle == null) { in filter() 174 sendVvmSmsBroadcast(context, settings, phoneAccountHandle, messageData, null); in filter() 207 sendVvmSmsBroadcast(context, settings, phoneAccountHandle, messageData, null); in filter() 214 sendVvmSmsBroadcast(context, settings, phoneAccountHandle, null, messageBody); in filter() 273 VisualVoicemailSmsFilterSettings filterSettings, PhoneAccountHandle phoneAccountHandle, in sendVvmSmsBroadcast() argument 285 builder.setPhoneAccountHandle(phoneAccountHandle); in sendVvmSmsBroadcast()
|
D | GsmCdmaPhone.java | 2643 PhoneAccountHandle phoneAccountHandle = subscriptionIdToPhoneAccountHandle(getSubId()); in setCallForwardingOption() local 2645 extras.putParcelable(TelecomManager.EXTRA_PHONE_ACCOUNT_HANDLE, phoneAccountHandle); in setCallForwardingOption() 2904 PhoneAccountHandle phoneAccountHandle = subscriptionIdToPhoneAccountHandle(getSubId()); in setCallWaiting() local 2906 extras.putParcelable(TelecomManager.EXTRA_PHONE_ACCOUNT_HANDLE, phoneAccountHandle); in setCallWaiting() 5064 final PhoneAccountHandle phoneAccountHandle = phoneAccounts.next(); in subscriptionIdToPhoneAccountHandle() local 5065 final PhoneAccount phoneAccount = telecomManager.getPhoneAccount(phoneAccountHandle); in subscriptionIdToPhoneAccountHandle() 5067 return phoneAccountHandle; in subscriptionIdToPhoneAccountHandle()
|
/frameworks/base/services/companion/java/com/android/server/companion/datatransfer/contextsync/ |
D | CallMetadataSyncConnectionService.java | 126 public Connection onCreateIncomingConnection(PhoneAccountHandle phoneAccountHandle, in onCreateIncomingConnection() argument 154 public void onCreateIncomingConnectionFailed(PhoneAccountHandle phoneAccountHandle, in onCreateIncomingConnectionFailed() argument 157 phoneAccountHandle != null ? phoneAccountHandle.getId() : "unknown PhoneAccount"; in onCreateIncomingConnectionFailed() 162 public Connection onCreateOutgoingConnection(PhoneAccountHandle phoneAccountHandle, in onCreateOutgoingConnection() argument 164 final PhoneAccountHandle handle = phoneAccountHandle != null ? phoneAccountHandle in onCreateOutgoingConnection() 216 public void onCreateOutgoingConnectionFailed(PhoneAccountHandle phoneAccountHandle, in onCreateOutgoingConnectionFailed() argument 219 phoneAccountHandle != null ? phoneAccountHandle.getId() : "unknown PhoneAccount"; in onCreateOutgoingConnectionFailed()
|
D | CrossDeviceSyncController.java | 892 private void unregisterPhoneAccount(PhoneAccountHandle phoneAccountHandle) { in unregisterPhoneAccount() argument 893 mTelecomManager.unregisterPhoneAccount(phoneAccountHandle); in unregisterPhoneAccount()
|
/frameworks/base/telecomm/java/android/telecom/ |
D | CallAttributes.java | 75 private CallAttributes(@NonNull PhoneAccountHandle phoneAccountHandle, in CallAttributes() argument 81 mPhoneAccountHandle = phoneAccountHandle; in CallAttributes() 174 public Builder(@NonNull PhoneAccountHandle phoneAccountHandle, in Builder() argument 182 Objects.requireNonNull(phoneAccountHandle); in Builder() 185 mPhoneAccountHandle = phoneAccountHandle; in Builder()
|
D | Voicemail.java | 41 private Voicemail(Long timestamp, String number, PhoneAccountHandle phoneAccountHandle, Long id, in Voicemail() argument 46 mPhoneAccount = phoneAccountHandle; in Voicemail()
|
D | TelecomManager.java | 2670 public boolean isIncomingCallPermitted(PhoneAccountHandle phoneAccountHandle) { in isIncomingCallPermitted() argument 2671 if (phoneAccountHandle == null) { in isIncomingCallPermitted() 2678 return service.isIncomingCallPermitted(phoneAccountHandle, in isIncomingCallPermitted() 2708 public boolean isOutgoingCallPermitted(PhoneAccountHandle phoneAccountHandle) { in isOutgoingCallPermitted() argument 2712 return service.isOutgoingCallPermitted(phoneAccountHandle, in isOutgoingCallPermitted()
|
D | Connection.java | 3962 public void setPhoneAccountHandle(@NonNull PhoneAccountHandle phoneAccountHandle) { in setPhoneAccountHandle() argument 3963 if (mPhoneAccountHandle != phoneAccountHandle) { in setPhoneAccountHandle() 3964 mPhoneAccountHandle = phoneAccountHandle; in setPhoneAccountHandle() 3965 notifyPhoneAccountChanged(phoneAccountHandle); in setPhoneAccountHandle()
|
D | ConnectionService.java | 2437 PhoneAccountHandle phoneAccountHandle = connection.getPhoneAccountHandle() == null in createConnection() local 2440 addConnection(phoneAccountHandle, callId, connection); in createConnection() 2456 phoneAccountHandle, in createConnection() 3112 public final void addExistingConnection(PhoneAccountHandle phoneAccountHandle, in addExistingConnection() argument 3114 addExistingConnection(phoneAccountHandle, connection, null /* conference */); in addExistingConnection() 3146 public final void addExistingConnection(@NonNull PhoneAccountHandle phoneAccountHandle, in addExistingConnection() argument 3149 String id = addExistingConnectionInternal(phoneAccountHandle, connection); in addExistingConnection() 3158 phoneAccountHandle, in addExistingConnection()
|
/frameworks/base/telephony/java/android/telephony/ |
D | VisualVoicemailSms.java | 96 public Builder setPhoneAccountHandle(PhoneAccountHandle phoneAccountHandle) { in setPhoneAccountHandle() argument 97 this.mPhoneAccountHandle = phoneAccountHandle; in setPhoneAccountHandle()
|
D | TelephonyManager.java | 478 public Integer recompute(PhoneAccountHandle phoneAccountHandle) { 482 return telephony.getSubIdForPhoneAccountHandle(phoneAccountHandle, 751 public TelephonyManager createForPhoneAccountHandle(PhoneAccountHandle phoneAccountHandle) { in createForPhoneAccountHandle() argument 752 int subId = getSubscriptionId(phoneAccountHandle); in createForPhoneAccountHandle() 5660 public void setVisualVoicemailEnabled(PhoneAccountHandle phoneAccountHandle, boolean enabled){ in setVisualVoicemailEnabled() argument 5676 public boolean isVisualVoicemailEnabled(PhoneAccountHandle phoneAccountHandle){ in isVisualVoicemailEnabled() argument 12827 public int getSubscriptionId(@NonNull PhoneAccountHandle phoneAccountHandle) { in getSubscriptionId() argument 12828 return mPhoneAccountHandleToSubIdCache.query(phoneAccountHandle); in getSubscriptionId() 13240 public void setVoicemailRingtoneUri(PhoneAccountHandle phoneAccountHandle, Uri uri) { in setVoicemailRingtoneUri() argument 13244 service.setVoicemailRingtoneUri(getOpPackageName(), phoneAccountHandle, uri); in setVoicemailRingtoneUri() local [all …]
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
D | ITelephony.aidl | 1374 int getSubIdForPhoneAccountHandle(in PhoneAccountHandle phoneAccountHandle, in getSubIdForPhoneAccountHandle() argument 1437 in PhoneAccountHandle phoneAccountHandle, in Uri uri); in setVoicemailRingtoneUri() argument 1460 in PhoneAccountHandle phoneAccountHandle, boolean enabled); in setVoicemailVibrationEnabled() argument
|
/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |