Lines Matching refs:newEntry

942 bool InputDispatcher::enqueueInboundEventLocked(std::unique_ptr<EventEntry> newEntry) {  in enqueueInboundEventLocked()  argument
944 mInboundQueue.push_back(std::move(newEntry)); in enqueueInboundEventLocked()
1235 std::shared_ptr<KeyEntry> newEntry = in synthesizeKeyRepeatLocked() local
1241 newEntry->syntheticRepeat = true; in synthesizeKeyRepeatLocked()
1242 mKeyRepeatState.lastKeyEntry = newEntry; in synthesizeKeyRepeatLocked()
1244 return newEntry; in synthesizeKeyRepeatLocked()
2912 EventEntry& newEntry = *(dispatchEntry->eventEntry); in enqueueDispatchEntryLocked() local
2914 switch (newEntry.type) { in enqueueDispatchEntryLocked()
2916 const KeyEntry& keyEntry = static_cast<const KeyEntry&>(newEntry); in enqueueDispatchEntryLocked()
2933 const MotionEntry& motionEntry = static_cast<const MotionEntry&>(newEntry); in enqueueDispatchEntryLocked()
3018 NamedEnum::string(newEntry.type).c_str()); in enqueueDispatchEntryLocked()
3025 incrementPendingForegroundDispatches(newEntry); in enqueueDispatchEntryLocked()
3738 std::unique_ptr<ConfigurationChangedEntry> newEntry = in notifyConfigurationChanged() local
3740 needWake = enqueueInboundEventLocked(std::move(newEntry)); in notifyConfigurationChanged()
3844 std::unique_ptr<KeyEntry> newEntry = in notifyKey() local
3850 needWake = enqueueInboundEventLocked(std::move(newEntry)); in notifyKey()
3932 std::unique_ptr<MotionEntry> newEntry = in notifyMotion() local
3943 needWake = enqueueInboundEventLocked(std::move(newEntry)); in notifyMotion()
3965 std::unique_ptr<SensorEntry> newEntry = in notifySensor() local
3971 needWake = enqueueInboundEventLocked(std::move(newEntry)); in notifySensor()
4014 std::unique_ptr<DeviceResetEntry> newEntry = in notifyDeviceReset() local
4016 needWake = enqueueInboundEventLocked(std::move(newEntry)); in notifyDeviceReset()