Home | History | Annotate | Download | only in app

Lines Matching refs:onFinished

150     public interface OnFinished {
167 private final OnFinished mWho;
173 FinishedDispatcher(PendingIntent pi, OnFinished who, Handler handler) {
568 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
582 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
601 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
616 * @param onFinished The object to call back on when the send has
622 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
627 public void send(int code, OnFinished onFinished, Handler handler)
629 send(null, code, null, onFinished, handler, null);
648 * @param onFinished The object to call back on when the send has
657 * @see #send(int, android.app.PendingIntent.OnFinished, Handler)
658 * @see #send(Context, int, Intent, OnFinished, Handler, String)
664 OnFinished onFinished, Handler handler) throws CanceledException {
665 send(context, code, intent, onFinished, handler, null);
684 * @param onFinished The object to call back on when the send has
698 * @see #send(int, android.app.PendingIntent.OnFinished, Handler)
699 * @see #send(Context, int, Intent, OnFinished, Handler)
705 OnFinished onFinished, Handler handler, String requiredPermission)
712 onFinished != null
713 ? new FinishedDispatcher(this, onFinished, handler)