Home | History | Annotate | Download | only in inputflinger

Lines Matching defs:seq

1963             status = connection->inputPublisher.publishKeyEvent(dispatchEntry->seq,
2007 status = connection->inputPublisher.publishMotionEvent(dispatchEntry->seq,
2060 const sp<Connection>& connection, uint32_t seq, bool handled) {
2062 ALOGD("channel '%s' ~ finishDispatchCycle - seq=%u, handled=%s",
2063 connection->getInputChannelName(), seq, toString(handled));
2074 onDispatchCycleFinishedLocked(currentTime, connection, seq, handled);
2142 uint32_t seq;
2144 status = connection->inputPublisher.receiveFinishedSignal(&seq, &handled);
2148 d->finishDispatchCycleLocked(currentTime, connection, seq, handled);
3411 nsecs_t currentTime, const sp<Connection>& connection, uint32_t seq, bool handled) {
3416 commandEntry->seq = seq;
3530 uint32_t seq = commandEntry->seq;
3534 DispatchEntry* dispatchEntry = connection->findWaitQueueEntry(seq);
3562 if (dispatchEntry == connection->findWaitQueueEntry(seq)) {
3995 seq(nextSeq()),
4008 uint32_t seq;
4010 seq = android_atomic_inc(&sNextSeqAtomic);
4011 } while (!seq);
4012 return seq;
4408 InputDispatcher::DispatchEntry* InputDispatcher::Connection::findWaitQueueEntry(uint32_t seq) {
4410 if (entry->seq == seq) {
4422 seq(0), handled(false) {