Home | History | Annotate | Download | only in app

Lines Matching refs:onFinished

121     public interface OnFinished {
138 private final OnFinished mWho;
144 FinishedDispatcher(PendingIntent pi, OnFinished who, Handler handler) {
444 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
458 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
477 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
492 * @param onFinished The object to call back on when the send has
498 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
503 public void send(int code, OnFinished onFinished, Handler handler)
505 send(null, code, null, onFinished, handler, null);
524 * @param onFinished The object to call back on when the send has
533 * @see #send(int, android.app.PendingIntent.OnFinished, Handler)
534 * @see #send(Context, int, Intent, OnFinished, Handler, String)
540 OnFinished onFinished, Handler handler) throws CanceledException {
541 send(context, code, intent, onFinished, handler, null);
560 * @param onFinished The object to call back on when the send has
574 * @see #send(int, android.app.PendingIntent.OnFinished, Handler)
575 * @see #send(Context, int, Intent, OnFinished, Handler)
581 OnFinished onFinished, Handler handler, String requiredPermission)
588 onFinished != null
589 ? new FinishedDispatcher(this, onFinished, handler)