HomeSort by relevance Sort by last modified time
    Searched refs:switchValues (Results 1 - 9 of 9) sorted by null

  /frameworks/base/services/core/java/com/android/server/
WiredAccessoryManager.java 107 int switchValues = 0;
109 switchValues |= SW_HEADPHONE_INSERT_BIT;
112 switchValues |= SW_MICROPHONE_INSERT_BIT;
115 switchValues |= SW_LINEOUT_INSERT_BIT;
117 notifyWiredAccessoryChanged(0, switchValues,
125 public void notifyWiredAccessoryChanged(long whenNanos, int switchValues, int switchMask) {
127 + " bits=" + switchCodeToString(switchValues, switchMask)
132 mSwitchValues = (mSwitchValues & ~switchMask) | switchValues;
301 private String switchCodeToString(int switchValues, int switchMask) {
304 (switchValues & SW_HEADPHONE_INSERT_BIT) != 0)
    [all...]
  /frameworks/native/services/inputflinger/
InputListener.cpp 107 uint32_t switchValues, uint32_t switchMask) :
109 switchValues(switchValues), switchMask(switchMask) {
114 switchValues(other.switchValues), switchMask(other.switchMask) {
InputListener.h 119 uint32_t switchValues;
125 uint32_t switchValues, uint32_t switchMask);
InputDispatcher.h 251 uint32_t switchValues, uint32_t switchMask, uint32_t policyFlags) = 0;
    [all...]
InputDispatcher.cpp     [all...]
  /frameworks/native/services/inputflinger/tests/
InputDispatcher_test.cpp 89 uint32_t switchValues, uint32_t switchMask, uint32_t policyFlags) {
InputReader_test.cpp     [all...]
  /frameworks/base/services/core/java/com/android/server/input/
InputManagerService.java     [all...]
  /frameworks/base/services/core/jni/
com_android_server_input_InputManagerService.cpp 209 virtual void notifySwitch(nsecs_t when, uint32_t switchValues, uint32_t switchMask,
551 uint32_t switchValues, uint32_t switchMask, uint32_t policyFlags) {
553 ALOGD("notifySwitch - when=%lld, switchValues=0x%08x, switchMask=0x%08x, policyFlags=0x%x",
554 when, switchValues, switchMask, policyFlags);
560 when, switchValues, switchMask);
    [all...]

Completed in 318 milliseconds