OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InputDispatcher
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/ui/base/test/
ui_controls_internal_win.cc
17
//
InputDispatcher
------------------------------------------------------------
19
//
InputDispatcher
is used to listen for a mouse/keyboard event. When the
21
class
InputDispatcher
: public base::RefCounted<
InputDispatcher
> {
23
InputDispatcher
(const base::Closure& task, WPARAM message_waiting_for);
34
friend class base::RefCounted<
InputDispatcher
>;
36
~
InputDispatcher
();
47
DISALLOW_COPY_AND_ASSIGN(
InputDispatcher
);
57
InputDispatcher
* current_dispatcher_ = NULL;
83
void InstallHook(
InputDispatcher
* dispatcher, bool key_hook)
[
all
...]
/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
"
46
#include "
InputDispatcher
.h"
194
// ---
InputDispatcher
---
196
InputDispatcher
::
InputDispatcher
(const sp<InputDispatcherPolicyInterface>& policy) :
209
InputDispatcher
::~
InputDispatcher
() {
223
void
InputDispatcher
::dispatchOnce() {
248
void
InputDispatcher
::dispatchOnceInnerLocked(nsecs_t* nextWakeupTime) {
400
bool
InputDispatcher
::enqueueInboundEventLocked(EventEntry* entry)
[
all
...]
InputManager.cpp
31
mDispatcher = new
InputDispatcher
(dispatcherPolicy);
54
status_t result = mDispatcherThread->run("
InputDispatcher
", PRIORITY_URGENT_DISPLAY);
56
ALOGE("Could not start
InputDispatcher
thread due to error %d.", result);
79
ALOGW("Could not stop
InputDispatcher
thread due to error %d.", result);
Android.mk
22
InputDispatcher
.cpp \
InputDispatcher.h
366
class
InputDispatcher
: public InputDispatcherInterface {
368
virtual ~
InputDispatcher
();
371
explicit
InputDispatcher
(const sp<InputDispatcherPolicyInterface>& policy);
585
typedef void (
InputDispatcher
::*Command)(CommandEntry* commandEntry);
[
all
...]
/frameworks/base/services/input/tests/
InputDispatcher_test.cpp
17
#include "../
InputDispatcher
.h"
108
sp<
InputDispatcher
> mDispatcher;
112
mDispatcher = new
InputDispatcher
(mFakePolicy);
Completed in 131 milliseconds