OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:policyFlags
(Results
1 - 6
of
6
) sorted by null
/frameworks/base/services/input/
InputListener.h
58
uint32_t
policyFlags
;
68
NotifyKeyArgs(nsecs_t eventTime, int32_t deviceId, uint32_t source, uint32_t
policyFlags
,
85
uint32_t
policyFlags
;
101
NotifyMotionArgs(nsecs_t eventTime, int32_t deviceId, uint32_t source, uint32_t
policyFlags
,
118
uint32_t
policyFlags
;
124
NotifySwitchArgs(nsecs_t eventTime, uint32_t
policyFlags
,
InputDispatcher.h
222
virtual bool filterInputEvent(const InputEvent* inputEvent, uint32_t
policyFlags
) = 0;
231
virtual void interceptKeyBeforeQueueing(const KeyEvent* keyEvent, uint32_t&
policyFlags
) = 0;
240
virtual void interceptMotionBeforeQueueing(nsecs_t when, uint32_t&
policyFlags
) = 0;
244
const KeyEvent* keyEvent, uint32_t
policyFlags
) = 0;
249
const KeyEvent* keyEvent, uint32_t
policyFlags
, KeyEvent* outFallbackKeyEvent) = 0;
254
uint32_t switchValues, uint32_t switchMask, uint32_t
policyFlags
) = 0;
302
uint32_t
policyFlags
) = 0;
386
uint32_t
policyFlags
);
437
uint32_t
policyFlags
;
449
EventEntry(int32_t type, nsecs_t eventTime, uint32_t
policyFlags
);
[
all
...]
InputDispatcher.cpp
307
if (mPendingEvent->
policyFlags
& POLICY_FLAG_PASS_TO_USER) {
320
if (!(mPendingEvent->
policyFlags
& POLICY_FLAG_PASS_TO_USER)) {
560
&& (keyEntry->
policyFlags
& POLICY_FLAG_TRUSTED)
561
&& (keyEntry->
policyFlags
& POLICY_FLAG_PASS_TO_USER);
653
uint32_t
policyFlags
= (entry->
policyFlags
& POLICY_FLAG_RAW_MASK)
658
entry->
policyFlags
=
policyFlags
;
662
entry->deviceId, entry->source,
policyFlags
,
716
&& (entry->
policyFlags
& POLICY_FLAG_TRUSTED
[
all
...]
InputReader.cpp
177
uint32_t
policyFlags
, int32_t lastButtonState, int32_t currentButtonState,
186
NotifyKeyArgs args(when, deviceId, source,
policyFlags
,
194
uint32_t
policyFlags
, int32_t lastButtonState, int32_t currentButtonState) {
195
synthesizeButtonKey(context, action, when, deviceId, source,
policyFlags
,
198
synthesizeButtonKey(context, action, when, deviceId, source,
policyFlags
,
[
all
...]
/frameworks/base/services/java/com/android/server/accessibility/
AccessibilityInputFilter.java
143
public void onInputEvent(InputEvent event, int
policyFlags
) {
145
Slog.d(TAG, "Received event: " + event + ",
policyFlags
=0x"
146
+ Integer.toHexString(
policyFlags
));
151
onMotionEvent(motionEvent,
policyFlags
);
155
onKeyEvent(keyEvent,
policyFlags
);
157
super.onInputEvent(event,
policyFlags
);
161
private void onMotionEvent(MotionEvent event, int
policyFlags
) {
163
super.onInputEvent(event,
policyFlags
);
166
if ((
policyFlags
& WindowManagerPolicy.FLAG_PASS_TO_USER) == 0) {
170
super.onInputEvent(event,
policyFlags
);
[
all
...]
AccessibilityManagerService.java
674
boolean notifyKeyEvent(KeyEvent event, int
policyFlags
) {
677
boolean handled = notifyKeyEventLocked(localClone,
policyFlags
, false);
679
handled = notifyKeyEventLocked(localClone,
policyFlags
, true);
[
all
...]
Completed in 65 milliseconds