Home | History | Annotate | Download | only in view

Lines Matching refs:looper

21 import android.os.Looper;
58 * @param looper The looper to use when invoking callbacks.
60 public InputEventReceiver(InputChannel inputChannel, Looper looper) {
64 if (looper == null) {
65 throw new IllegalArgumentException("looper must not be null");
69 mMessageQueue = looper.getQueue();
134 * Must be called on the same Looper thread to which the receiver is attached.
161 * Must be called on the same Looper thread to which the receiver is attached.
196 InputChannel inputChannel, Looper looper);