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 579 struct CommandEntry;
580 typedef void (InputDispatcher::*Command)(CommandEntry* commandEntry);
583 struct CommandEntry : Link<CommandEntry> {
584 CommandEntry(Command command);
585 ~CommandEntry();
844 Queue<CommandEntry> mCommandQueue;
    [all...]
InputDispatcher.cpp 563 CommandEntry* commandEntry = mCommandQueue.dequeueAtHead();
565 Command command = commandEntry->command;
566 (this->*command)(commandEntry); // commands are implicitly 'LockedInterruptible'
568 commandEntry->connection.clear();
569 delete commandEntry;
574 InputDispatcher::CommandEntry* InputDispatcher::postCommandLocked(Command command) {
575 CommandEntry* commandEntry = new CommandEntry(command)
    [all...]
  /external/webkit/Source/WebCore/editing/
EditorCommand.cpp     [all...]

Completed in 150 milliseconds