OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InputDispatcher
(Results
1 - 6
of
6
) sorted by null
/external/chromium/chrome/browser/automation/
ui_controls_win.cc
19
//
InputDispatcher
------------------------------------------------------------
21
//
InputDispatcher
is used to listen for a mouse/keyboard event. When the
23
class
InputDispatcher
: public base::RefCounted<
InputDispatcher
> {
25
InputDispatcher
(Task* task, WPARAM message_waiting_for);
36
friend class base::RefCounted<
InputDispatcher
>;
38
~
InputDispatcher
();
49
DISALLOW_COPY_AND_ASSIGN(
InputDispatcher
);
59
InputDispatcher
* current_dispatcher_ = NULL;
85
void InstallHook(
InputDispatcher
* dispatcher, bool key_hook)
[
all
...]
/frameworks/base/services/input/
InputDispatcher.cpp
17
#define LOG_TAG "
InputDispatcher
"
54
#include "
InputDispatcher
.h"
207
// ---
InputDispatcher
---
209
InputDispatcher
::
InputDispatcher
(const sp<InputDispatcherPolicyInterface>& policy) :
231
InputDispatcher
::~
InputDispatcher
() {
245
void
InputDispatcher
::dispatchOnce() {
262
void
InputDispatcher
::dispatchOnceInnerLocked(nsecs_t* nextWakeupTime) {
470
void
InputDispatcher
::dispatchIdleLocked()
[
all
...]
InputManager.cpp
31
mDispatcher = new
InputDispatcher
(dispatcherPolicy);
54
status_t result = mDispatcherThread->run("
InputDispatcher
", PRIORITY_URGENT_DISPLAY);
56
LOGE("Could not start
InputDispatcher
thread due to error %d.", result);
79
LOGW("Could not stop
InputDispatcher
thread due to error %d.", result);
Android.mk
22
InputDispatcher
.cpp \
InputDispatcher.h
368
class
InputDispatcher
: public InputDispatcherInterface {
370
virtual ~
InputDispatcher
();
373
explicit
InputDispatcher
(const sp<InputDispatcherPolicyInterface>& policy);
605
typedef void (
InputDispatcher
::*Command)(CommandEntry* commandEntry);
[
all
...]
/frameworks/base/services/input/tests/
InputDispatcher_test.cpp
17
#include "../
InputDispatcher
.h"
107
sp<
InputDispatcher
> mDispatcher;
111
mDispatcher = new
InputDispatcher
(mFakePolicy);
Completed in 383 milliseconds