OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NotifyKeyArgs
(Results
1 - 6
of
6
) sorted by null
/frameworks/base/services/input/
InputListener.h
54
struct
NotifyKeyArgs
: public NotifyArgs {
66
inline
NotifyKeyArgs
() { }
68
NotifyKeyArgs
(nsecs_t eventTime, int32_t deviceId, uint32_t source, uint32_t policyFlags,
72
NotifyKeyArgs
(const
NotifyKeyArgs
& other);
74
virtual ~
NotifyKeyArgs
() { }
163
virtual void notifyKey(const
NotifyKeyArgs
* args) = 0;
182
virtual void notifyKey(const
NotifyKeyArgs
* args);
InputListener.cpp
43
// ---
NotifyKeyArgs
---
45
NotifyKeyArgs
::
NotifyKeyArgs
(nsecs_t eventTime, int32_t deviceId, uint32_t source,
54
NotifyKeyArgs
::
NotifyKeyArgs
(const
NotifyKeyArgs
& other) :
62
void
NotifyKeyArgs
::notify(const sp<InputListenerInterface>& listener) const {
155
void QueuedInputListener::notifyKey(const
NotifyKeyArgs
* args) {
156
mArgsQueue.push(new
NotifyKeyArgs
(*args));
InputDispatcher.h
379
virtual void notifyKey(const
NotifyKeyArgs
* args);
[
all
...]
InputDispatcher.cpp
[
all
...]
InputReader.cpp
186
NotifyKeyArgs
args(when, deviceId, source, policyFlags,
[
all
...]
/frameworks/base/services/input/tests/
InputReader_test.cpp
205
List<
NotifyKeyArgs
> mNotifyKeyArgsQueue;
236
void assertNotifyKeyWasCalled(
NotifyKeyArgs
* outEventArgs = NULL) {
282
virtual void notifyKey(const
NotifyKeyArgs
* args) {
[
all
...]
Completed in 496 milliseconds