Lines Matching refs:seq
1949 status = connection->inputPublisher.publishKeyEvent(dispatchEntry->seq,
1993 status = connection->inputPublisher.publishMotionEvent(dispatchEntry->seq,
2046 const sp<Connection>& connection, uint32_t seq, bool handled) {
2048 ALOGD("channel '%s' ~ finishDispatchCycle - seq=%u, handled=%s",
2049 connection->getInputChannelName(), seq, toString(handled));
2060 onDispatchCycleFinishedLocked(currentTime, connection, seq, handled);
2128 uint32_t seq;
2130 status = connection->inputPublisher.receiveFinishedSignal(&seq, &handled);
2134 d->finishDispatchCycleLocked(currentTime, connection, seq, handled);
3336 nsecs_t currentTime, const sp<Connection>& connection, uint32_t seq, bool handled) {
3341 commandEntry->seq = seq;
3453 uint32_t seq = commandEntry->seq;
3457 DispatchEntry* dispatchEntry = connection->findWaitQueueEntry(seq);
3485 if (dispatchEntry == connection->findWaitQueueEntry(seq)) {
3898 seq(nextSeq()),
3911 uint32_t seq;
3913 seq = android_atomic_inc(&sNextSeqAtomic);
3914 } while (!seq);
3915 return seq;
4289 InputDispatcher::DispatchEntry* InputDispatcher::Connection::findWaitQueueEntry(uint32_t seq) {
4291 if (entry->seq == seq) {
4303 seq(0), handled(false) {