Lines Matching refs:newEntry
1329 bool InputDispatcher::enqueueInboundEventLocked(std::unique_ptr<EventEntry> newEntry) { in enqueueInboundEventLocked() argument
1331 mInboundQueue.push_back(std::move(newEntry)); in enqueueInboundEventLocked()
1629 std::shared_ptr<KeyEntry> newEntry = in synthesizeKeyRepeatLocked() local
1636 newEntry->syntheticRepeat = true; in synthesizeKeyRepeatLocked()
1638 newEntry->traceTracker = mTracer->traceInboundEvent(*newEntry); in synthesizeKeyRepeatLocked()
1641 mKeyRepeatState.lastKeyEntry = newEntry; in synthesizeKeyRepeatLocked()
1643 return newEntry; in synthesizeKeyRepeatLocked()
3536 auto newEntry = std::make_shared< in enqueueDispatchEntryLocked() local
3552 newEntry->traceTracker = in enqueueDispatchEntryLocked()
3553 mTracer->traceDerivedEvent(*newEntry, in enqueueDispatchEntryLocked()
3556 resolvedMotion = newEntry; in enqueueDispatchEntryLocked()
4455 std::unique_ptr<ConfigurationChangedEntry> newEntry = in notifyConfigurationChanged() local
4457 needWake = enqueueInboundEventLocked(std::move(newEntry)); in notifyConfigurationChanged()
4525 std::unique_ptr<KeyEntry> newEntry = in notifyKey() local
4531 newEntry->traceTracker = mTracer->traceInboundEvent(*newEntry); in notifyKey()
4534 needWake = enqueueInboundEventLocked(std::move(newEntry)); in notifyKey()
4651 std::unique_ptr<MotionEntry> newEntry = in notifyMotion() local
4661 newEntry->traceTracker = mTracer->traceInboundEvent(*newEntry); in notifyMotion()
4673 needWake = enqueueInboundEventLocked(std::move(newEntry)); in notifyMotion()
4695 std::unique_ptr<SensorEntry> newEntry = in notifySensor() local
4700 needWake = enqueueInboundEventLocked(std::move(newEntry)); in notifySensor()
4744 std::unique_ptr<DeviceResetEntry> newEntry = in notifyDeviceReset() local
4746 needWake = enqueueInboundEventLocked(std::move(newEntry)); in notifyDeviceReset()
6799 std::unique_ptr<KeyEntry> newEntry = in afterKeyEventLockedInterruptable() local
6809 newEntry->traceTracker = in afterKeyEventLockedInterruptable()
6810 mTracer->traceDerivedEvent(*newEntry, *keyEntry.traceTracker); in afterKeyEventLockedInterruptable()
6817 return newEntry; in afterKeyEventLockedInterruptable()