Lines Matching refs:seq
1948 status = connection->inputPublisher.publishKeyEvent(dispatchEntry->seq,
1992 status = connection->inputPublisher.publishMotionEvent(dispatchEntry->seq,
2045 const sp<Connection>& connection, uint32_t seq, bool handled) {
2047 ALOGD("channel '%s' ~ finishDispatchCycle - seq=%u, handled=%s",
2048 connection->getInputChannelName(), seq, toString(handled));
2059 onDispatchCycleFinishedLocked(currentTime, connection, seq, handled);
2127 uint32_t seq;
2129 status = connection->inputPublisher.receiveFinishedSignal(&seq, &handled);
2133 d->finishDispatchCycleLocked(currentTime, connection, seq, handled);
3360 nsecs_t currentTime, const sp<Connection>& connection, uint32_t seq, bool handled) {
3365 commandEntry->seq = seq;
3479 uint32_t seq = commandEntry->seq;
3483 DispatchEntry* dispatchEntry = connection->findWaitQueueEntry(seq);
3511 if (dispatchEntry == connection->findWaitQueueEntry(seq)) {
3940 seq(nextSeq()),
3953 uint32_t seq;
3955 seq = android_atomic_inc(&sNextSeqAtomic);
3956 } while (!seq);
3957 return seq;
4331 InputDispatcher::DispatchEntry* InputDispatcher::Connection::findWaitQueueEntry(uint32_t seq) {
4333 if (entry->seq == seq) {
4345 seq(0), handled(false) {