Searched refs:switchMask (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/services/input/
H A DInputListener.cpp107 uint32_t switchValues, uint32_t switchMask) :
109 switchValues(switchValues), switchMask(switchMask) {
114 switchValues(other.switchValues), switchMask(other.switchMask) {
106 NotifySwitchArgs(nsecs_t eventTime, uint32_t policyFlags, uint32_t switchValues, uint32_t switchMask) argument
H A DInputListener.h120 uint32_t switchMask; member in struct:android::NotifySwitchArgs
125 uint32_t switchValues, uint32_t switchMask);
H A DInputDispatcher.h251 uint32_t switchValues, uint32_t switchMask, uint32_t policyFlags) = 0;
H A DInputDispatcher.cpp2508 ALOGD("notifySwitch - eventTime=%lld, policyFlags=0x%x, switchValues=0x%08x, switchMask=0x%08x",
2510 args->switchValues, args->switchMask);
2516 args->switchValues, args->switchMask, policyFlags);
/frameworks/base/services/java/com/android/server/
H A DWiredAccessoryManager.java125 public void notifyWiredAccessoryChanged(long whenNanos, int switchValues, int switchMask) { argument
127 + " bits=" + switchCodeToString(switchValues, switchMask)
128 + " mask=" + Integer.toHexString(switchMask));
132 mSwitchValues = (mSwitchValues & ~switchMask) | switchValues;
271 private String switchCodeToString(int switchValues, int switchMask) { argument
273 if ((switchMask & SW_HEADPHONE_INSERT_BIT) != 0 &&
277 if ((switchMask & SW_MICROPHONE_INSERT_BIT) != 0 &&
/frameworks/base/services/java/com/android/server/input/
H A DInputManagerService.java1271 private void notifySwitch(long whenNanos, int switchValues, int switchMask) { argument
1274 + ", mask=" + Integer.toHexString(switchMask));
1277 if ((switchMask & SW_LID_BIT) != 0) {
1282 if (mUseDevInputEventForAudioJack && (switchMask & SW_JACK_BITS) != 0) {
1284 switchMask);
1499 public void notifyWiredAccessoryChanged(long whenNanos, int switchValues, int switchMask); argument
/frameworks/base/services/input/tests/
H A DInputDispatcher_test.cpp89 uint32_t switchValues, uint32_t switchMask, uint32_t policyFlags) {
88 notifySwitch(nsecs_t when, uint32_t switchValues, uint32_t switchMask, uint32_t policyFlags) argument
H A DInputReader_test.cpp1505 args.switchMask);
/frameworks/base/services/jni/
H A Dcom_android_server_input_InputManagerService.cpp190 virtual void notifySwitch(nsecs_t when, uint32_t switchValues, uint32_t switchMask,
531 uint32_t switchValues, uint32_t switchMask, uint32_t policyFlags) {
533 ALOGD("notifySwitch - when=%lld, switchValues=0x%08x, switchMask=0x%08x, policyFlags=0x%x",
534 when, switchValues, switchMask, policyFlags);
540 when, switchValues, switchMask);
530 notifySwitch(nsecs_t when, uint32_t switchValues, uint32_t switchMask, uint32_t policyFlags) argument

Completed in 108 milliseconds