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 597 CommandEntry* commandEntry = mCommandQueue.dequeueAtHead();
599 Command command = commandEntry->command;
600 (this->*command)(commandEntry); // commands are implicitly 'LockedInterruptible'
602 commandEntry->connection.clear();
603 delete commandEntry;
608 InputDispatcher::CommandEntry* InputDispatcher::postCommandLocked(Command command) {
609 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 39 milliseconds