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

  /frameworks/base/services/input/
InputDispatcher.h 604 struct CommandEntry;
605 typedef void (InputDispatcher::*Command)(CommandEntry* commandEntry);
608 struct CommandEntry : Link<CommandEntry> {
609 CommandEntry(Command command);
610 ~CommandEntry();
869 Queue<CommandEntry> mCommandQueue;
    [all...]
InputDispatcher.cpp 654 CommandEntry* commandEntry = mCommandQueue.dequeueAtHead();
656 Command command = commandEntry->command;
657 (this->*command)(commandEntry); // commands are implicitly 'LockedInterruptible'
659 commandEntry->connection.clear();
660 delete commandEntry;
665 InputDispatcher::CommandEntry* InputDispatcher::postCommandLocked(Command command) {
666 CommandEntry* commandEntry = new CommandEntry(command)
    [all...]
  /external/webkit/Source/WebCore/editing/
EditorCommand.cpp     [all...]

Completed in 1277 milliseconds