OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CommandEntry
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/services/input/
InputDispatcher.h
584
struct
CommandEntry
;
585
typedef void (InputDispatcher::*Command)(
CommandEntry
*
commandEntry
);
588
struct
CommandEntry
: Link<
CommandEntry
> {
589
CommandEntry
(Command command);
590
~
CommandEntry
();
852
Queue<
CommandEntry
> mCommandQueue;
[
all
...]
InputDispatcher.cpp
594
CommandEntry
*
commandEntry
= mCommandQueue.dequeueAtHead();
596
Command command =
commandEntry
->command;
597
(this->*command)(
commandEntry
); // commands are implicitly 'LockedInterruptible'
599
commandEntry
->connection.clear();
600
delete
commandEntry
;
605
InputDispatcher::
CommandEntry
* InputDispatcher::postCommandLocked(Command command) {
606
CommandEntry
*
commandEntry
= new
CommandEntry
(command)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
EditorCommand.cpp
[
all
...]
Completed in 4588 milliseconds