Lines Matching refs:seq
239 uint32_t seq,
251 ALOGD("channel '%s' publisher ~ publishKeyEvent: seq=%u, deviceId=%d, source=0x%x, "
254 mChannel->getName().string(), seq,
259 if (!seq) {
266 msg.body.key.seq = seq;
281 uint32_t seq,
299 ALOGD("channel '%s' publisher ~ publishMotionEvent: seq=%u, deviceId=%d, source=0x%x, "
304 mChannel->getName().string(), seq,
309 if (!seq) {
322 msg.body.motion.seq = seq;
362 *outSeq = msg.body.finished.seq;
418 ALOGD("channel '%s' consumer ~ consumed batch event, seq=%u",
434 *outSeq = mMsg.body.key.seq;
437 ALOGD("channel '%s' consumer ~ consumed key event, seq=%u",
466 "deferred current event, seq=%u",
491 *outSeq = mMsg.body.motion.seq;
494 ALOGD("channel '%s' consumer ~ consumed motion event, seq=%u",
555 seqChain.seq = msg.body.motion.seq;
562 chain = msg.body.motion.seq;
797 status_t InputConsumer::sendFinishedSignal(uint32_t seq, bool handled) {
799 ALOGD("channel '%s' consumer ~ sendFinishedSignal: seq=%u, handled=%s",
800 mChannel->getName().string(), seq, handled ? "true" : "false");
803 if (!seq) {
811 uint32_t currentSeq = seq;
816 if (seqChain.seq == currentSeq) {
830 seqChain.seq = chainIndex != 0 ? chainSeqs[chainIndex - 1] : seq;
839 return sendUnchainedFinishedSignal(seq, handled);
842 status_t InputConsumer::sendUnchainedFinishedSignal(uint32_t seq, bool handled) {
845 msg.body.finished.seq = seq;