Searched defs:sentIntent (Results 1 - 15 of 15) sorted by relevance

/packages/apps/Dialer/java/com/android/voicemail/impl/
H A DTelephonyMangerCompat.java37 PendingIntent sentIntent) {
48 return (String) method.invoke(telephonyManager, number, port, text, sentIntent);
68 method.invoke(null, context, phoneAccountHandle, number, (short) port, text, sentIntent);
31 sendVisualVoicemailSms( Context context, PhoneAccountHandle phoneAccountHandle, String number, int port, String text, PendingIntent sentIntent) argument
H A DOmtpVvmCarrierConfigHelper.java390 public void requestStatus(@Nullable PendingIntent sentIntent) { argument
392 mProtocol.requestStatus(this, sentIntent);
/packages/apps/Dialer/java/com/android/voicemail/impl/sms/
H A DOmtpCvvmMessageSender.java35 public void requestVvmActivation(@Nullable PendingIntent sentIntent) { argument
36 sendCvvmMessage(OmtpConstants.ACTIVATE_REQUEST, sentIntent);
40 public void requestVvmDeactivation(@Nullable PendingIntent sentIntent) { argument
41 sendCvvmMessage(OmtpConstants.DEACTIVATE_REQUEST, sentIntent);
45 public void requestVvmStatus(@Nullable PendingIntent sentIntent) { argument
46 sendCvvmMessage(OmtpConstants.STATUS_REQUEST, sentIntent);
49 private void sendCvvmMessage(String request, PendingIntent sentIntent) { argument
53 sendSms(sb.toString(), sentIntent);
H A DVvm3MessageSender.java40 public void requestVvmActivation(@Nullable PendingIntent sentIntent) { argument
42 requestVvmStatus(sentIntent);
46 public void requestVvmDeactivation(@Nullable PendingIntent sentIntent) { argument
51 public void requestVvmStatus(@Nullable PendingIntent sentIntent) { argument
55 sendSms(sb.toString(), sentIntent);
H A DOmtpMessageSender.java56 * @param sentIntent If not NULL this PendingIntent is broadcast when the message is successfully
59 public void requestVvmActivation(@Nullable PendingIntent sentIntent) {} argument
64 * @param sentIntent If not NULL this PendingIntent is broadcast when the message is successfully
67 public void requestVvmDeactivation(@Nullable PendingIntent sentIntent) {} argument
72 * @param sentIntent If not NULL this PendingIntent is broadcast when the message is successfully
75 public void requestVvmStatus(@Nullable PendingIntent sentIntent) {} argument
77 protected void sendSms(String text, PendingIntent sentIntent) { argument
79 mContext, mPhoneAccountHandle, mDestinationNumber, mApplicationPort, text, sentIntent);
H A DOmtpStandardMessageSender.java62 public void requestVvmActivation(@Nullable PendingIntent sentIntent) { argument
72 sendSms(sb.toString(), sentIntent);
80 public void requestVvmDeactivation(@Nullable PendingIntent sentIntent) { argument
84 sendSms(sb.toString(), sentIntent);
92 public void requestVvmStatus(@Nullable PendingIntent sentIntent) { argument
101 sendSms(sb.toString(), sentIntent);
/packages/apps/Messaging/src/android/support/v7/mms/
H A DDownloadRequest.java42 final PendingIntent sentIntent) {
43 super(locationUrl, pduUri, sentIntent);
41 DownloadRequest(final String locationUrl, final Uri pduUri, final PendingIntent sentIntent) argument
H A DSendRequest.java47 SendRequest(final String locationUrl, final Uri pduUri, final PendingIntent sentIntent) { argument
48 super(locationUrl, pduUri, sentIntent);
H A DMmsManager.java134 * @param sentIntent the pending intent for returning results
137 String locationUrl, PendingIntent sentIntent) {
142 getConfigOverrides(subId), sentIntent);
144 MmsService.startRequest(context, new SendRequest(locationUrl, contentUri, sentIntent));
136 sendMultimediaMessage(int subId, Context context, Uri contentUri, String locationUrl, PendingIntent sentIntent) argument
/packages/apps/Dialer/java/com/android/voicemail/impl/protocol/
H A DVisualVoicemailProtocol.java36 public void startActivation(OmtpVvmCarrierConfigHelper config, PendingIntent sentIntent) { argument
39 messageSender.requestVvmActivation(sentIntent);
64 public void requestStatus(OmtpVvmCarrierConfigHelper config, @Nullable PendingIntent sentIntent) { argument
67 messageSender.requestVvmStatus(sentIntent);
H A DVvm3Protocol.java91 OmtpVvmCarrierConfigHelper config, @Nullable PendingIntent sentIntent) {
96 config.requestStatus(sentIntent);
90 startActivation( OmtpVvmCarrierConfigHelper config, @Nullable PendingIntent sentIntent) argument
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/
H A DMapClientService.java139 PendingIntent sentIntent, PendingIntent deliveredIntent) {
141 return mMceStateMachine.sendMapMessage(contacts, message, sentIntent, deliveredIntent);
290 PendingIntent sentIntent, PendingIntent deliveredIntent) {
297 return service.sendMessage(device, contacts, message, sentIntent, deliveredIntent);
138 sendMessage(BluetoothDevice device, Uri[] contacts, String message, PendingIntent sentIntent, PendingIntent deliveredIntent) argument
289 sendMessage(BluetoothDevice device, Uri[] contacts, String message, PendingIntent sentIntent, PendingIntent deliveredIntent) argument
H A DMceStateMachine.java196 PendingIntent sentIntent,
228 if (sentIntent != null) {
229 sentReceiptRequested.put(bmsg, sentIntent);
195 sendMapMessage(Uri[] contacts, String message, PendingIntent sentIntent, PendingIntent deliveredIntent) argument
/packages/services/Mms/src/com/android/mms/service/
H A DSendRequest.java63 PendingIntent sentIntent, String creator, Bundle configOverrides, Context context) {
68 mSentIntent = sentIntent;
62 SendRequest(RequestManager manager, int subId, Uri contentUri, String locationUrl, PendingIntent sentIntent, String creator, Bundle configOverrides, Context context) argument
/packages/services/Telephony/src/com/android/phone/
H A DPhoneInterfaceManager.java2053 String number, int port, String text, PendingIntent sentIntent) {
2063 sentIntent, null, false);
2067 (short) port, data, sentIntent, null);
2052 sendVisualVoicemailSmsForSubscriber(String callingPackage, int subId, String number, int port, String text, PendingIntent sentIntent) argument

Completed in 1308 milliseconds