Home | History | Annotate | Download | only in app

Lines Matching refs:onFinished

178     public interface OnFinished {
195 private final OnFinished mWho;
201 FinishedDispatcher(PendingIntent pi, OnFinished who, Handler handler) {
590 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
604 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
623 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
638 * @param onFinished The object to call back on when the send has
644 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
649 public void send(int code, OnFinished onFinished, Handler handler)
651 send(null, code, null, onFinished, handler, null);
670 * @param onFinished The object to call back on when the send has
679 * @see #send(int, android.app.PendingIntent.OnFinished, Handler)
680 * @see #send(Context, int, Intent, OnFinished, Handler, String)
686 OnFinished onFinished, Handler handler) throws CanceledException {
687 send(context, code, intent, onFinished, handler, null);
706 * @param onFinished The object to call back on when the send has
720 * @see #send(int, android.app.PendingIntent.OnFinished, Handler)
721 * @see #send(Context, int, Intent, OnFinished, Handler)
727 OnFinished onFinished, Handler handler, String requiredPermission)
734 onFinished != null
735 ? new FinishedDispatcher(this, onFinished, handler)