Home | History | Annotate | Download | only in input

Lines Matching full:mmsg

406             // mMsg contains a valid input message from the previous call to consume
411 status_t result = mChannel->receiveMessage(&mMsg);
428 switch (mMsg.header.type) {
433 initializeKeyEvent(keyEvent, &mMsg);
434 *outSeq = mMsg.body.key.seq;
444 ssize_t batchIndex = findBatch(mMsg.body.motion.deviceId, mMsg.body.motion.source);
447 if (canAddSample(batch, &mMsg)) {
448 batch.samples.push(mMsg);
474 if (mMsg.body.motion.action == AMOTION_EVENT_ACTION_MOVE
475 || mMsg.body.motion.action == AMOTION_EVENT_ACTION_HOVER_MOVE) {
478 batch.samples.push(mMsg);
489 updateTouchState(&mMsg);
490 initializeMotionEvent(motionEvent, &mMsg);
491 *outSeq = mMsg.body.motion.seq;
502 mChannel->getName().string(), mMsg.header.type);