OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NotifyKeyArgs
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/services/input/
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));
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);
Completed in 40 milliseconds