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

  /frameworks/base/libs/ui/
InputDispatcher.cpp 517 CommandEntry* commandEntry = mCommandQueue.dequeueAtHead();
519 Command command = commandEntry->command;
520 (this->*command)(commandEntry); // commands are implicitly 'LockedInterruptible'
522 commandEntry->connection.clear();
523 mAllocator.releaseCommandEntry(commandEntry);
528 InputDispatcher::CommandEntry* InputDispatcher::postCommandLocked(Command command) {
529 CommandEntry* commandEntry = mAllocator.obtainCommandEntry(command);
530 mCommandQueue.enqueueAtTail(commandEntry);
    [all...]
  /frameworks/base/include/ui/
InputDispatcher.h 584 struct CommandEntry;
585 typedef void (InputDispatcher::*Command)(CommandEntry* commandEntry);
588 struct CommandEntry : Link<CommandEntry> {
589 CommandEntry();
590 ~CommandEntry();
669 CommandEntry* obtainCommandEntry(Command command);
677 void releaseCommandEntry(CommandEntry* entry);
691 Pool<CommandEntry> mCommandEntryPool
    [all...]

Completed in 85 milliseconds