HomeSort by relevance Sort by last modified time
    Searched refs:commandEntry (Results 1 - 2 of 2) sorted by null

  /frameworks/native/services/inputflinger/
InputDispatcher.cpp 591 CommandEntry* commandEntry = mCommandQueue.dequeueAtHead();
593 Command command = commandEntry->command;
594 (this->*command)(commandEntry); // commands are implicitly 'LockedInterruptible'
596 commandEntry->connection.clear();
597 delete commandEntry;
602 InputDispatcher::CommandEntry* InputDispatcher::postCommandLocked(Command command) {
603 CommandEntry* commandEntry = new CommandEntry(command)
    [all...]
InputDispatcher.h 582 struct CommandEntry;
583 typedef void (InputDispatcher::*Command)(CommandEntry* commandEntry);
586 struct CommandEntry : Link<CommandEntry> {
587 CommandEntry(Command command);
588 ~CommandEntry();
850 Queue<CommandEntry> mCommandQueue;
    [all...]

Completed in 31 milliseconds