Searched defs:phoneAccountHandle (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/telephony/java/android/telephony/
H A DVisualVoicemailSms.java96 public Builder setPhoneAccountHandle(PhoneAccountHandle phoneAccountHandle) { argument
97 this.mPhoneAccountHandle = phoneAccountHandle;
H A DVisualVoicemailService.java195 * @param phoneAccountHandle The {@link PhoneAccountHandle} triggering this event.
199 PhoneAccountHandle phoneAccountHandle);
220 * @param phoneAccountHandle The {@link PhoneAccountHandle} triggering this event.
224 PhoneAccountHandle phoneAccountHandle);
243 * @param phoneAccountHandle The account to apply the settings to.
250 PhoneAccountHandle phoneAccountHandle,
253 int subId = getSubId(context, phoneAccountHandle);
267 * @param phoneAccountHandle The account to send the SMS with.
282 PhoneAccountHandle phoneAccountHandle, String number,
285 telephonyManager.sendVisualVoicemailSmsForSubscriber(getSubId(context, phoneAccountHandle),
198 onCellServiceConnected(VisualVoicemailTask task, PhoneAccountHandle phoneAccountHandle) argument
223 onSimRemoved(VisualVoicemailTask task, PhoneAccountHandle phoneAccountHandle) argument
249 setSmsFilterSettings(Context context, PhoneAccountHandle phoneAccountHandle, VisualVoicemailSmsFilterSettings settings) argument
281 sendVisualVoicemailSms(Context context, PhoneAccountHandle phoneAccountHandle, String number, short port, String text, PendingIntent sentIntent) argument
289 getSubId(Context context, PhoneAccountHandle phoneAccountHandle) argument
[all...]
H A DTelephonyManager.java313 public TelephonyManager createForPhoneAccountHandle(PhoneAccountHandle phoneAccountHandle) { argument
314 int subId = getSubIdForPhoneAccountHandle(phoneAccountHandle);
3357 * @param phoneAccountHandle the phone account to change the client state
3365 public void setVisualVoicemailEnabled(PhoneAccountHandle phoneAccountHandle, boolean enabled){ argument
3371 * @param phoneAccountHandle the phone account to check for.
3380 public boolean isVisualVoicemailEnabled(PhoneAccountHandle phoneAccountHandle){ argument
3586 * @param phoneAccountHandle The account to send the SMS with.
7212 private int getSubIdForPhoneAccountHandle(PhoneAccountHandle phoneAccountHandle) { argument
7217 retval = getSubIdForPhoneAccount(service.getPhoneAccount(phoneAccountHandle));
7329 * @param phoneAccountHandle Th
7337 setVoicemailRingtoneUri(PhoneAccountHandle phoneAccountHandle, Uri uri) argument
7382 setVoicemailVibrationEnabled(PhoneAccountHandle phoneAccountHandle, boolean enabled) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DVisualVoicemailSmsFilter.java130 PhoneAccountHandle phoneAccountHandle = sPhoneAccountHandleConverter.fromSubId(subId);
132 if (phoneAccountHandle == null) {
147 sendVvmSmsBroadcast(context, settings, phoneAccountHandle, messageData, null);
181 sendVvmSmsBroadcast(context, settings, phoneAccountHandle, messageData, null);
197 sendVvmSmsBroadcast(context, settings, phoneAccountHandle, null, messageBody);
238 VisualVoicemailSmsFilterSettings filterSettings, PhoneAccountHandle phoneAccountHandle,
250 builder.setPhoneAccountHandle(phoneAccountHandle);
237 sendVvmSmsBroadcast(Context context, VisualVoicemailSmsFilterSettings filterSettings, PhoneAccountHandle phoneAccountHandle, @Nullable WrappedMessageData messageData, @Nullable String messageBody) argument
/frameworks/base/telecomm/java/android/telecom/
H A DVoicemail.java41 private Voicemail(Long timestamp, String number, PhoneAccountHandle phoneAccountHandle, Long id, argument
46 mPhoneAccount = phoneAccountHandle;
H A DTelecomManager.java1748 * @param phoneAccountHandle The {@link PhoneAccountHandle} the call will be added for.
1752 public boolean isIncomingCallPermitted(PhoneAccountHandle phoneAccountHandle) { argument
1753 if (phoneAccountHandle == null) {
1760 return service.isIncomingCallPermitted(phoneAccountHandle);
1785 * @param phoneAccountHandle The {@link PhoneAccountHandle} the call will be added for.
1789 public boolean isOutgoingCallPermitted(PhoneAccountHandle phoneAccountHandle) { argument
1793 return service.isOutgoingCallPermitted(phoneAccountHandle);
H A DConnectionService.java2032 * @param phoneAccountHandle The phone account handle for the connection.
2035 public final void addExistingConnection(PhoneAccountHandle phoneAccountHandle, argument
2037 addExistingConnection(phoneAccountHandle, connection, null /* conference */);
2054 * @param phoneAccountHandle The phone account handle for the connection.
2059 public final void addExistingConnection(PhoneAccountHandle phoneAccountHandle, argument
2062 String id = addExistingConnectionInternal(phoneAccountHandle, connection);
2071 phoneAccountHandle,
H A DConnection.java3147 public void setPhoneAccountHandle(PhoneAccountHandle phoneAccountHandle) { argument
3148 if (mPhoneAccountHandle != phoneAccountHandle) {
3149 mPhoneAccountHandle = phoneAccountHandle;
3150 notifyPhoneAccountChanged(phoneAccountHandle);

Completed in 600 milliseconds