Home
last modified time | relevance | path

Searched refs:CommandEntry (Results 1 – 4 of 4) sorted by relevance

/aosp12/frameworks/native/services/inputflinger/dispatcher/
H A DInputDispatcher.h174 std::deque<std::unique_ptr<CommandEntry>> mCommandQueue GUARDED_BY(mLock);
300 void postCommandLocked(std::unique_ptr<CommandEntry> commandEntry) REQUIRES(mLock);
634 void doNotifyConfigurationChangedLockedInterruptible(CommandEntry* commandEntry)
637 void doNotifyFocusChangedLockedInterruptible(CommandEntry* commandEntry) REQUIRES(mLock);
638 void doNotifyDropWindowLockedInterruptible(CommandEntry* commandEntry) REQUIRES(mLock);
647 void doNotifySensorLockedInterruptible(CommandEntry* commandEntry) REQUIRES(mLock);
648 void doNotifyUntrustedTouchLockedInterruptible(CommandEntry* commandEntry) REQUIRES(mLock);
649 void doInterceptKeyBeforeDispatchingLockedInterruptible(CommandEntry* commandEntry)
651 void doDispatchCycleFinishedLockedInterruptible(CommandEntry* commandEntry) REQUIRES(mLock);
652 void doSetPointerCaptureLockedInterruptible(CommandEntry* commandEntry) REQUIRES(mLock);
[all …]
H A DEntry.h265 struct CommandEntry;
266 typedef std::function<void(InputDispatcher&, CommandEntry*)> Command;
269 struct CommandEntry { struct
270 explicit CommandEntry(Command command);
271 ~CommandEntry();
H A DEntry.cpp323 CommandEntry::CommandEntry(Command command) in CommandEntry() function in android::inputdispatcher::CommandEntry
331 CommandEntry::~CommandEntry() {} in ~CommandEntry()
H A DInputDispatcher.cpp1257 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>( in dispatchConfigurationChangedLocked()
1452 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>( in dispatchKeyLocked()
3112 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>( in dispatchPointerDownOutsideFocus()
5508 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>( in onDispatchCycleFinishedLocked()
5523 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>( in onDispatchCycleBrokenLocked()
5531 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>( in notifyFocusChangedLocked()
5587 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>( in onAnrLocked()
5594 std::unique_ptr<CommandEntry> commandEntry = std::make_unique<CommandEntry>( in onUntrustedTouchLocked()
5843 std::unique_ptr<CommandEntry> monitorResponsiveCommand = std::make_unique<CommandEntry>( in sendMonitorResponsiveCommandLocked()
5850 std::unique_ptr<CommandEntry> windowResponsiveCommand = std::make_unique<CommandEntry>( in sendWindowResponsiveCommandLocked()
[all …]