Lines Matching refs:send

121      * {@link #send()} is called on it, it will be automatically
122 * canceled for you and any future attempt to send through it will fail.
157 * This means that the additional intent argument passed to the send
164 * Exception thrown when trying to send through a PendingIntent that
181 * Callback interface for discovering when a send operation has
190 * Called when a send operation as completed.
194 * @param resultCode The final result code determined by the send.
294 * of the intent that can be supplied when the actual send happens.
325 * of the intent that can be supplied when the actual send happens.
399 * {@link #send(Context, int, Intent)} and {@link #FLAG_UPDATE_CURRENT}, etc.
417 * of the intent that can be supplied when the actual send happens.
449 * {@link #send(Context, int, Intent)} and {@link #FLAG_UPDATE_CURRENT}, etc.
467 * of the intent that can be supplied when the actual send happens.
537 * of the intent that can be supplied when the actual send happens.
591 * of the intent that can be supplied when the actual send happens.
640 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
645 public void send() throws CanceledException {
646 send(null, 0, null, null, null, null, null);
654 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
659 public void send(int code) throws CanceledException {
660 send(null, code, null, null, null, null, null);
674 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
679 public void send(Context context, int code, @Nullable Intent intent)
681 send(context, code, intent, null, null, null, null);
686 * caller to be notified when the send has completed.
689 * @param onFinished The object to call back on when the send has
695 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
700 public void send(int code, @Nullable OnFinished onFinished, @Nullable Handler handler)
702 send(null, code, null, onFinished, handler, null, null);
708 * when the send has completed.
723 * @param onFinished The object to call back on when the send has
729 * @see #send()
730 * @see #send(int)
731 * @see #send(Context, int, Intent)
732 * @see #send(int, android.app.PendingIntent.OnFinished, Handler)
733 * @see #send(Context, int, Intent, OnFinished, Handler, String)
738 public void send(Context context, int code, @Nullable Intent intent,
740 send(context, code, intent, onFinished, handler, null, null);
746 * when the send has completed.
761 * @param onFinished The object to call back on when the send has
772 * @see #send()
773 * @see #send(int)
774 * @see #send(Context, int, Intent)
775 * @see #send(int, android.app.PendingIntent.OnFinished, Handler)
776 * @see #send(Context, int, Intent, OnFinished, Handler)
781 public void send(Context context, int code, @Nullable Intent intent,
785 send(context, code, intent, onFinished, handler, requiredPermission, null);
791 * when the send has completed.
806 * @param onFinished The object to call back on when the send has
819 * @see #send()
820 * @see #send(int)
821 * @see #send(Context, int, Intent)
822 * @see #send(int, android.app.PendingIntent.OnFinished, Handler)
823 * @see #send(Context, int, Intent, OnFinished, Handler)
828 public void send(Context context, int code, @Nullable Intent intent,
877 * through a {@link #send} call, not who gave you the PendingIntent.</p>
906 * through a {@link #send} call, not who gave you the PendingIntent.</p>
936 * through a {@link #send} call, not who gave you the PendingIntent.</p>