HomeSort by relevance Sort by last modified time
    Searched refs:sentIntent (Results 1 - 25 of 53) sorted by null

1 2 3

  /packages/services/Telephony/src/com/android/phone/vvm/omtp/sms/
OmtpCvvmMessageSender.java 34 public void requestVvmActivation(@Nullable PendingIntent sentIntent) {
35 sendCvvmMessage(OmtpConstants.ACTIVATE_REQUEST, sentIntent);
39 public void requestVvmDeactivation(@Nullable PendingIntent sentIntent) {
40 sendCvvmMessage(OmtpConstants.DEACTIVATE_REQUEST, sentIntent);
44 public void requestVvmStatus(@Nullable PendingIntent sentIntent) {
45 sendCvvmMessage(OmtpConstants.STATUS_REQUEST, sentIntent);
48 private void sendCvvmMessage(String request, PendingIntent sentIntent) {
52 sendSms(sb.toString(), sentIntent);
Vvm3MessageSender.java 37 public void requestVvmActivation(@Nullable PendingIntent sentIntent) {
39 requestVvmStatus(sentIntent);
43 public void requestVvmDeactivation(@Nullable PendingIntent sentIntent) {
49 public void requestVvmStatus(@Nullable PendingIntent sentIntent) {
53 sendSms(sb.toString(), sentIntent);
OmtpMessageSender.java 53 * @param sentIntent If not NULL this PendingIntent is broadcast when the message is
56 public void requestVvmActivation(@Nullable PendingIntent sentIntent) {}
61 * @param sentIntent If not NULL this PendingIntent is broadcast when the message is
64 public void requestVvmDeactivation(@Nullable PendingIntent sentIntent) {}
69 * @param sentIntent If not NULL this PendingIntent is broadcast when the message is
72 public void requestVvmStatus(@Nullable PendingIntent sentIntent) {}
74 protected void sendSms(String text, PendingIntent sentIntent) {
80 sentIntent, null, false);
92 mApplicationPort, data, sentIntent, null);
OmtpStandardMessageSender.java 60 public void requestVvmActivation(@Nullable PendingIntent sentIntent) {
70 sendSms(sb.toString(), sentIntent);
78 public void requestVvmDeactivation(@Nullable PendingIntent sentIntent) {
82 sendSms(sb.toString(), sentIntent);
90 public void requestVvmStatus(@Nullable PendingIntent sentIntent) {
99 sendSms(sb.toString(), sentIntent);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSmsManager.java 28 PendingIntent sentIntent, PendingIntent deliveryIntent) {
40 sentIntent,
56 private PendingIntent sentIntent;
61 PendingIntent sentIntent, PendingIntent deliveryIntent) {
65 this.sentIntent = sentIntent;
82 return sentIntent;
  /cts/tests/tests/telephony/src/android/telephony/gsm/cts/
SmsManagerTest.java 48 protected void sendDataMessage(String destAddr,short port, byte[] data, PendingIntent sentIntent, PendingIntent deliveredIntent) {
49 getSmsManager().sendDataMessage(destAddr, null, port, data, sentIntent, deliveredIntent);
53 protected void sendTextMessage(String destAddr, String text, PendingIntent sentIntent, PendingIntent deliveredIntent) {
54 getSmsManager().sendTextMessage(destAddr, null, text, sentIntent, deliveredIntent);
  /frameworks/opt/telephony/src/java/android/telephony/gsm/
SmsManager.java 58 * @param sentIntent if not NULL this <code>PendingIntent</code> is
65 * The per-application based SMS control checks sentIntent. If sentIntent
78 PendingIntent sentIntent, PendingIntent deliveryIntent) {
80 sentIntent, deliveryIntent);
115 * The per-application based SMS control checks sentIntent. If sentIntent
143 * @param sentIntent if not NULL this <code>PendingIntent</code> is
150 * The per-application based SMS control checks sentIntent. If sentIntent
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
ISms.aidl 79 * @param sentIntent if not NULL this <code>PendingIntent</code> is
86 * For <code>RESULT_ERROR_GENERIC_FAILURE</code> the sentIntent may include
89 * The per-application based SMS control checks sentIntent. If sentIntent
98 in String scAddr, in int destPort, in byte[] data, in PendingIntent sentIntent,
107 * @param sentIntent if not NULL this <code>PendingIntent</code> is
114 * For <code>RESULT_ERROR_GENERIC_FAILURE</code> the sentIntent may include
117 * The per-application based SMS control checks sentIntent. If sentIntent
126 in String scAddr, in int destPort, in byte[] data, in PendingIntent sentIntent,
    [all...]
IMms.aidl 38 * @param sentIntent if not NULL this <code>PendingIntent</code> is
42 String locationUrl, in Bundle configOverrides, in PendingIntent sentIntent);
168 * @param sentIntent if not NULL this <code>PendingIntent</code> is
172 in Bundle configOverrides, in PendingIntent sentIntent);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
UiccSmsController.java 97 String scAddr, int destPort, byte[] data, PendingIntent sentIntent,
102 sentIntent, deliveryIntent);
107 sendErrorInPendingIntent(sentIntent, SmsManager.RESULT_ERROR_GENERIC_FAILURE);
112 String destAddr, String scAddr, int destPort, byte[] data, PendingIntent sentIntent,
117 sentIntent, deliveryIntent);
125 String text, PendingIntent sentIntent, PendingIntent deliveryIntent) {
127 text, sentIntent, deliveryIntent, true /* persistMessageForNonDefaultSmsApp*/);
132 String scAddr, String text, PendingIntent sentIntent, PendingIntent deliveryIntent,
136 iccSmsIntMgr.sendText(callingPackage, destAddr, scAddr, text, sentIntent,
141 sendErrorInPendingIntent(sentIntent, SmsManager.RESULT_ERROR_GENERIC_FAILURE)
    [all...]
IccSmsInterfaceManager.java 321 int destPort, byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) {
325 sendDataInternal(callingPackage, destAddr, scAddr, destPort, data, sentIntent,
334 byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) {
338 sendDataInternal(callingPackage, destAddr, scAddr, destPort, data, sentIntent,
350 * @param sentIntent if not NULL this <code>PendingIntent</code> is
357 * For <code>RESULT_ERROR_GENERIC_FAILURE</code> the sentIntent may include
360 * The per-application based SMS control checks sentIntent. If sentIntent
369 int destPort, byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) {
372 destPort + " data='"+ HexDump.toHexString(data) + "' sentIntent="
    [all...]
ImsSMSDispatcher.java 161 byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) {
164 data, sentIntent, deliveryIntent);
167 data, sentIntent, deliveryIntent);
199 public void sendText(String destAddr, String scAddr, String text, PendingIntent sentIntent,
205 text, sentIntent, deliveryIntent, messageUri, callingPkg, persistMessage);
208 text, sentIntent, deliveryIntent, messageUri, callingPkg, persistMessage);
364 String message, SmsHeader smsHeader, int format, PendingIntent sentIntent,
SMSDispatcher.java 613 * Called when SMS send completes. Broadcasts a sentIntent on success.
614 * On failure, either sets up retries or broadcasts a sentIntent with
623 PendingIntent sentIntent = tracker.mSentIntent;
632 if (DBG) Rlog.d(TAG, "SMS send complete. Broadcasting intent: " + sentIntent);
697 * @param sentIntent the PendingIntent to send the error to
699 protected static void handleNotInService(int ss, PendingIntent sentIntent) {
700 if (sentIntent != null) {
703 sentIntent.send(RESULT_ERROR_RADIO_OFF);
705 sentIntent.send(RESULT_ERROR_NO_SERVICE);
730 * @param sentIntent if not NULL this <code>PendingIntent</code> i
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaSMSDispatcher.java 110 byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) {
115 SmsTracker tracker = getSmsTracker(map, sentIntent, deliveryIntent, getFormat(),
130 if (sentIntent != null) {
132 sentIntent.send(SmsManager.RESULT_ERROR_GENERIC_FAILURE);
142 public void sendText(String destAddr, String scAddr, String text, PendingIntent sentIntent,
149 SmsTracker tracker = getSmsTracker(map, sentIntent, deliveryIntent, getFormat(),
163 if (sentIntent != null) {
165 sentIntent.send(SmsManager.RESULT_ERROR_GENERIC_FAILURE);
190 PendingIntent sentIntent, PendingIntent deliveryIntent, boolean lastPart,
212 return getSmsTracker(map, sentIntent, deliveryIntent
    [all...]
  /cts/tests/tests/permission2/src/android/permission2/cts/
NoReceiveSmsPermissionTest.java 88 PendingIntent sentIntent = PendingIntent.getBroadcast(getContext(), 0,
101 sendSms(currentNumber, "test message", sentIntent, deliveryIntent);
104 protected void sendSms(String currentNumber, String text, PendingIntent sentIntent,
106 SmsManager.getDefault().sendTextMessage(currentNumber, null, text, sentIntent,
  /frameworks/opt/telephony/src/java/android/telephony/
SmsManager.java 279 * @param sentIntent if not NULL this <code>PendingIntent</code> is
286 * For <code>RESULT_ERROR_GENERIC_FAILURE</code> the sentIntent may include
289 * The per-application based SMS control checks sentIntent. If sentIntent
300 PendingIntent sentIntent, PendingIntent deliveryIntent) {
302 sentIntent, deliveryIntent, true /* persistMessageForCarrierApp*/);
306 String text, PendingIntent sentIntent, PendingIntent deliveryIntent,
320 scAddress, text, sentIntent, deliveryIntent,
337 PendingIntent sentIntent, PendingIntent deliveryIntent) {
339 sentIntent, deliveryIntent, false /* persistMessageForCarrierApp*/)
    [all...]
  /packages/apps/Messaging/src/android/support/v7/mms/
MmsManager.java 134 * @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));
DownloadRequest.java 42 final PendingIntent sentIntent) {
43 super(locationUrl, pduUri, sentIntent);
SendRequest.java 47 SendRequest(final String locationUrl, final Uri pduUri, final PendingIntent sentIntent) {
48 super(locationUrl, pduUri, sentIntent);
  /frameworks/base/services/core/java/com/android/server/
MmsServiceBroker.java 126 Bundle configOverrides, PendingIntent sentIntent) throws RemoteException {
127 returnPendingIntentWithError(sentIntent);
192 Bundle configOverrides, PendingIntent sentIntent) throws RemoteException {
193 returnPendingIntentWithError(sentIntent);
332 String locationUrl, Bundle configOverrides, PendingIntent sentIntent)
344 configOverrides, sentIntent);
467 Bundle configOverrides, PendingIntent sentIntent) throws RemoteException {
473 sentIntent);
  /packages/apps/Messaging/src/com/android/messaging/sms/
MmsSender.java 153 final Intent sentIntent = new Intent(SendStatusReceiver.MMS_SENT_ACTION,
157 sentIntent.putExtra(SendMessageAction.EXTRA_CONTENT_URI, contentUri);
158 sentIntent.putExtra(SendMessageAction.EXTRA_RESPONSE_IMPORTANT, responseImportant);
160 sentIntent.putExtras(sentIntentExtras);
165 sentIntent,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmSMSDispatcher.java 154 byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) {
159 SmsTracker tracker = getSmsTracker(map, sentIntent, deliveryIntent, getFormat(),
180 public void sendText(String destAddr, String scAddr, String text, PendingIntent sentIntent,
187 SmsTracker tracker = getSmsTracker(map, sentIntent, deliveryIntent, getFormat(),
222 PendingIntent sentIntent, PendingIntent deliveryIntent, boolean lastPart,
231 return getSmsTracker(map, sentIntent,
  /cts/tests/tests/telephony/src/android/telephony/cts/
SmsManagerTest.java 501 protected void sendDataMessage(String destAddr,short port, byte[] data, PendingIntent sentIntent, PendingIntent deliveredIntent) {
502 getSmsManager().sendDataMessage(destAddr, null, port, data, sentIntent, deliveredIntent);
505 protected void sendTextMessage(String destAddr, String text, PendingIntent sentIntent, PendingIntent deliveredIntent) {
506 getSmsManager().sendTextMessage(destAddr, null, text, sentIntent, deliveredIntent);
  /packages/services/Mms/src/com/android/mms/service/
SendRequest.java 63 PendingIntent sentIntent, String creator, Bundle configOverrides, Context context) {
68 mSentIntent = sentIntent;
MmsService.java 157 String locationUrl, Bundle configOverrides, PendingIntent sentIntent)
167 sendErrorInPendingIntent(sentIntent);
172 locationUrl, sentIntent, callingPkg, configOverrides, MmsService.this);
330 Bundle configOverrides, PendingIntent sentIntent) throws RemoteException {
    [all...]

Completed in 838 milliseconds

1 2 3