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 583 struct CommandEntry;
584 typedef void (InputDispatcher::*Command)(CommandEntry* commandEntry);
587 struct CommandEntry : Link<CommandEntry> {
588 CommandEntry(Command command);
589 ~CommandEntry();
849 Queue<CommandEntry> mCommandQueue;
    [all...]
InputDispatcher.cpp 583 CommandEntry* commandEntry = mCommandQueue.dequeueAtHead();
585 Command command = commandEntry->command;
586 (this->*command)(commandEntry); // commands are implicitly 'LockedInterruptible'
588 commandEntry->connection.clear();
589 delete commandEntry;
594 InputDispatcher::CommandEntry* InputDispatcher::postCommandLocked(Command command) {
595 CommandEntry* commandEntry = new CommandEntry(command)
    [all...]
  /external/webkit/Source/WebCore/editing/
EditorCommand.cpp     [all...]

Completed in 238 milliseconds