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

  /frameworks/native/services/inputflinger/
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...]
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...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditorCommand.cpp     [all...]

Completed in 138 milliseconds