Home | History | Annotate | Download | only in app

Lines Matching defs:OnFinished

190     public interface OnFinished {
207 private final OnFinished mWho;
214 FinishedDispatcher(PendingIntent pi, OnFinished who, Handler handler) {
678 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
692 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
712 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
727 * @param onFinished The object to call back on when the send has
733 * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
738 public void send(int code, @Nullable OnFinished onFinished, @Nullable Handler handler)
740 send(null, code, null, onFinished, handler, null, null);
761 * @param onFinished The object to call back on when the send has
770 * @see #send(int, android.app.PendingIntent.OnFinished, Handler)
771 * @see #send(Context, int, Intent, OnFinished, Handler, String)
777 @Nullable OnFinished onFinished, @Nullable Handler handler) throws CanceledException {
778 send(context, code, intent, onFinished, handler, null, null);
799 * @param onFinished The object to call back on when the send has
813 * @see #send(int, android.app.PendingIntent.OnFinished, Handler)
814 * @see #send(Context, int, Intent, OnFinished, Handler)
820 @Nullable OnFinished onFinished, @Nullable Handler handler,
823 send(context, code, intent, onFinished, handler, requiredPermission, null);
844 * @param onFinished The object to call back on when the send has
860 * @see #send(int, android.app.PendingIntent.OnFinished, Handler)
861 * @see #send(Context, int, Intent, OnFinished, Handler)
867 @Nullable OnFinished onFinished, @Nullable Handler handler,
876 onFinished != null
877 ? new FinishedDispatcher(this, onFinished, handler)