Home
last modified time | relevance | path

Searched refs:commandEntry (Results 1 – 2 of 2) sorted by relevance

/frameworks/native/services/inputflinger/dispatcher/
DInputDispatcher.cpp962 std::unique_ptr<CommandEntry> commandEntry = std::move(mCommandQueue.front()); in runCommandsLockedInterruptible() local
964 Command command = commandEntry->command; in runCommandsLockedInterruptible()
965 command(*this, commandEntry.get()); // commands are implicitly 'LockedInterruptible' in runCommandsLockedInterruptible()
967 commandEntry->connection.clear(); in runCommandsLockedInterruptible()
972 void InputDispatcher::postCommandLocked(std::unique_ptr<CommandEntry> commandEntry) { in postCommandLocked() argument
973 mCommandQueue.push_back(std::move(commandEntry)); in postCommandLocked()
1058 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>( in dispatchConfigurationChangedLocked() local
1060 commandEntry->eventTime = entry->eventTime; in dispatchConfigurationChangedLocked()
1061 postCommandLocked(std::move(commandEntry)); in dispatchConfigurationChangedLocked()
1164 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>( in dispatchKeyLocked() local
[all …]
DInputDispatcher.h274 void postCommandLocked(std::unique_ptr<CommandEntry> commandEntry) REQUIRES(mLock);
502 void doNotifyConfigurationChangedLockedInterruptible(CommandEntry* commandEntry)
504 void doNotifyInputChannelBrokenLockedInterruptible(CommandEntry* commandEntry) REQUIRES(mLock);
505 void doNotifyFocusChangedLockedInterruptible(CommandEntry* commandEntry) REQUIRES(mLock);
506 void doNotifyAnrLockedInterruptible(CommandEntry* commandEntry) REQUIRES(mLock);
507 void doInterceptKeyBeforeDispatchingLockedInterruptible(CommandEntry* commandEntry)
509 void doDispatchCycleFinishedLockedInterruptible(CommandEntry* commandEntry) REQUIRES(mLock);
516 void doPokeUserActivityLockedInterruptible(CommandEntry* commandEntry) REQUIRES(mLock);
518 void doOnPointerDownOutsideFocusLockedInterruptible(CommandEntry* commandEntry) REQUIRES(mLock);