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

Completed in 43 milliseconds