Home | History | Annotate | Download | only in view

Lines Matching refs:inputChannel

41     private InputChannel mInputChannel;
48 InputChannel inputChannel, MessageQueue messageQueue);
57 * @param inputChannel The input channel.
60 public InputEventReceiver(InputChannel inputChannel, Looper looper) {
61 if (inputChannel == null) {
62 throw new IllegalArgumentException("inputChannel must not be null");
68 mInputChannel = inputChannel;
71 inputChannel, mMessageQueue);
193 InputChannel inputChannel, Looper looper);