Home | History | Annotate | Download | only in app

Lines Matching defs:OnFinished

121     public interface OnFinished {
138 private final OnFinished mWho;
144 FinishedDispatcher(PendingIntent pi, OnFinished who, Handler handler) {
366 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
380 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
399 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
414 * @param onFinished The object to call back on when the send has
420 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
425 public void send(int code, OnFinished onFinished, Handler handler)
427 send(null, code, null, onFinished, handler, null);
446 * @param onFinished The object to call back on when the send has
455 * @see #send(int, android.app.PendingIntent.OnFinished, Handler)
456 * @see #send(Context, int, Intent, OnFinished, Handler, String)
462 OnFinished onFinished, Handler handler) throws CanceledException {
463 send(context, code, intent, onFinished, handler, null);
482 * @param onFinished The object to call back on when the send has
496 * @see #send(int, android.app.PendingIntent.OnFinished, Handler)
497 * @see #send(Context, int, Intent, OnFinished, Handler)
503 OnFinished onFinished, Handler handler, String requiredPermission)
510 onFinished != null
511 ? new FinishedDispatcher(this, onFinished, handler)