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

1 2 3 4

  /packages/apps/Dialer/java/com/android/voicemail/impl/sms/
OmtpCvvmMessageSender.java 35 public void requestVvmActivation(@Nullable PendingIntent sentIntent) {
36 sendCvvmMessage(OmtpConstants.ACTIVATE_REQUEST, sentIntent);
40 public void requestVvmDeactivation(@Nullable PendingIntent sentIntent) {
41 sendCvvmMessage(OmtpConstants.DEACTIVATE_REQUEST, sentIntent);
45 public void requestVvmStatus(@Nullable PendingIntent sentIntent) {
46 sendCvvmMessage(OmtpConstants.STATUS_REQUEST, sentIntent);
49 private void sendCvvmMessage(String request, PendingIntent sentIntent) {
53 sendSms(sb.toString(), sentIntent);
Vvm3MessageSender.java 40 public void requestVvmActivation(@Nullable PendingIntent sentIntent) {
42 requestVvmStatus(sentIntent);
46 public void requestVvmDeactivation(@Nullable PendingIntent sentIntent) {
51 public void requestVvmStatus(@Nullable PendingIntent sentIntent) {
55 sendSms(sb.toString(), sentIntent);
OmtpMessageSender.java 57 * @param sentIntent If not NULL this PendingIntent is broadcast when the message is successfully
60 public void requestVvmActivation(@Nullable PendingIntent sentIntent) {}
65 * @param sentIntent If not NULL this PendingIntent is broadcast when the message is successfully
68 public void requestVvmDeactivation(@Nullable PendingIntent sentIntent) {}
73 * @param sentIntent If not NULL this PendingIntent is broadcast when the message is successfully
76 public void requestVvmStatus(@Nullable PendingIntent sentIntent) {}
78 protected void sendSms(String text, PendingIntent sentIntent) {
84 context, phoneAccountHandle, destinationNumber, applicationPort, text, sentIntent);
OmtpStandardMessageSender.java 62 public void requestVvmActivation(@Nullable PendingIntent sentIntent) {
72 sendSms(sb.toString(), sentIntent);
80 public void requestVvmDeactivation(@Nullable PendingIntent sentIntent) {
84 sendSms(sb.toString(), sentIntent);
92 public void requestVvmStatus(@Nullable PendingIntent sentIntent) {
101 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);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowSmsManager.java 43 public void sendDataMessage(String destinationAddress, String scAddress, short destinationPort, byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) {
48 lastDataParams = new DataMessageParams(destinationAddress, scAddress, destinationPort, data, sentIntent, deliveryIntent);
52 public void sendTextMessage(String destinationAddress, String scAddress, String text, PendingIntent sentIntent, PendingIntent deliveryIntent) {
61 lastTextSmsParams = new TextSmsParams(destinationAddress, scAddress, text, sentIntent, deliveryIntent);
124 private final PendingIntent sentIntent;
127 public DataMessageParams(String destinationAddress, String scAddress, short destinationPort, byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) {
132 this.sentIntent = sentIntent;
153 return sentIntent;
165 private final PendingIntent sentIntent;
    [all...]
  /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...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/protocol/
VisualVoicemailProtocol.java 36 public void startActivation(OmtpVvmCarrierConfigHelper config, PendingIntent sentIntent) {
39 messageSender.requestVvmActivation(sentIntent);
65 public void requestStatus(OmtpVvmCarrierConfigHelper config, @Nullable PendingIntent sentIntent) {
68 messageSender.requestVvmStatus(sentIntent);
  /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);
  /packages/apps/Dialer/java/com/android/voicemail/impl/
TelephonyMangerCompat.java 37 PendingIntent sentIntent) {
48 return (String) method.invoke(telephonyManager, number, port, text, sentIntent);
68 method.invoke(null, context, phoneAccountHandle, number, (short) port, text, sentIntent);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
UiccSmsController.java 101 String scAddr, int destPort, byte[] data, PendingIntent sentIntent,
106 sentIntent, deliveryIntent);
111 sendErrorInPendingIntent(sentIntent, SmsManager.RESULT_ERROR_GENERIC_FAILURE);
116 String destAddr, String scAddr, int destPort, byte[] data, PendingIntent sentIntent,
121 sentIntent, deliveryIntent);
129 String text, PendingIntent sentIntent, PendingIntent deliveryIntent) {
131 text, sentIntent, deliveryIntent, true /* persistMessageForNonDefaultSmsApp*/);
136 String scAddr, String text, PendingIntent sentIntent, PendingIntent deliveryIntent,
140 iccSmsIntMgr.sendText(callingPackage, destAddr, scAddr, text, sentIntent,
145 sendErrorInPendingIntent(sentIntent, SmsManager.RESULT_ERROR_GENERIC_FAILURE)
    [all...]
IccSmsInterfaceManager.java 334 int destPort, byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) {
338 sendDataInternal(destAddr, scAddr, destPort, data, sentIntent, deliveryIntent);
346 byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) {
350 sendDataInternal(destAddr, scAddr, destPort, data, sentIntent, deliveryIntent);
361 * @param sentIntent if not NULL this <code>PendingIntent</code> is
368 * For <code>RESULT_ERROR_GENERIC_FAILURE</code> the sentIntent may include
371 * The per-application based SMS control checks sentIntent. If sentIntent
380 int destPort, byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) {
383 destPort + " data='"+ HexDump.toHexString(data) + "' sentIntent="
    [all...]
SMSDispatcher.java 645 * Called when SMS send completes. Broadcasts a sentIntent on success.
646 * On failure, either sets up retries or broadcasts a sentIntent with
655 PendingIntent sentIntent = tracker.mSentIntent;
664 if (DBG) Rlog.d(TAG, "SMS send complete. Broadcasting intent: " + sentIntent);
729 * @param sentIntent the PendingIntent to send the error to
731 protected static void handleNotInService(int ss, PendingIntent sentIntent) {
732 if (sentIntent != null) {
735 sentIntent.send(RESULT_ERROR_RADIO_OFF);
737 sentIntent.send(RESULT_ERROR_NO_SERVICE);
764 * @param sentIntent if not NULL this <code>PendingIntent</code> i
    [all...]
SmsDispatchersController.java 374 * @param sentIntent if not NULL this <code>PendingIntent</code> is
382 * For <code>RESULT_ERROR_GENERIC_FAILURE</code> the sentIntent may include
385 * The per-application based SMS control checks sentIntent. If sentIntent
393 byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) {
395 mImsSmsDispatcher.sendData(destAddr, scAddr, destPort, data, sentIntent,
398 mCdmaDispatcher.sendData(destAddr, scAddr, destPort, data, sentIntent, deliveryIntent);
400 mGsmDispatcher.sendData(destAddr, scAddr, destPort, data, sentIntent, deliveryIntent);
410 * @param sentIntent if not NULL this <code>PendingIntent</code> is
418 * For <code>RESULT_ERROR_GENERIC_FAILURE</code> the sentIntent may includ
    [all...]
  /frameworks/base/telephony/java/android/telephony/
SmsManager.java 291 * @param sentIntent if not NULL this <code>PendingIntent</code> is
298 * For <code>RESULT_ERROR_GENERIC_FAILURE</code> the sentIntent may include
301 * The per-application based SMS control checks sentIntent. If sentIntent
312 PendingIntent sentIntent, PendingIntent deliveryIntent) {
313 sendTextMessageInternal(destinationAddress, scAddress, text, sentIntent, deliveryIntent,
318 String text, PendingIntent sentIntent, PendingIntent deliveryIntent,
332 scAddress, text, sentIntent, deliveryIntent,
363 PendingIntent sentIntent, PendingIntent deliveryIntent) {
364 sendTextMessageInternal(destinationAddress, scAddress, text, sentIntent, deliveryIntent
    [all...]
VisualVoicemailService.java 271 * @param sentIntent The sent intent passed to the {@link SmsManager}
283 short port, String text, PendingIntent sentIntent) {
286 number, port, text, sentIntent);
  /system/bt/binder/android/bluetooth/
IBluetoothMapClient.aidl 38 in PendingIntent sentIntent, in PendingIntent deliveryIntent);
  /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);
  /cts/tests/tests/permission2/src/android/permission2/cts/
NoReceiveSmsPermissionTest.java 132 PendingIntent sentIntent = PendingIntent.getBroadcast(getContext(), 0,
145 sendSms(currentNumber, message, sentIntent, deliveryIntent);
148 protected void sendSms(String currentNumber, String text, PendingIntent sentIntent,
150 SmsManager.getDefault().sendTextMessage(currentNumber, null, text, 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/base/services/core/java/com/android/server/
MmsServiceBroker.java 127 Bundle configOverrides, PendingIntent sentIntent) throws RemoteException {
128 returnPendingIntentWithError(sentIntent);
193 Bundle configOverrides, PendingIntent sentIntent) throws RemoteException {
194 returnPendingIntentWithError(sentIntent);
333 String locationUrl, Bundle configOverrides, PendingIntent sentIntent)
345 configOverrides, sentIntent);
468 Bundle configOverrides, PendingIntent sentIntent) throws RemoteException {
474 sentIntent);

Completed in 3365 milliseconds

1 2 3 4