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

  /frameworks/base/services/core/java/com/android/server/
WiredAccessoryManager.java 104 int switchValues = 0;
106 switchValues |= SW_HEADPHONE_INSERT_BIT;
109 switchValues |= SW_MICROPHONE_INSERT_BIT;
112 switchValues |= SW_LINEOUT_INSERT_BIT;
114 notifyWiredAccessoryChanged(0, switchValues,
122 public void notifyWiredAccessoryChanged(long whenNanos, int switchValues, int switchMask) {
124 + " bits=" + switchCodeToString(switchValues, switchMask)
129 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 121 uint32_t switchValues;
127 uint32_t switchValues, uint32_t switchMask);
InputDispatcher.h 257 uint32_t switchValues, uint32_t switchMask, uint32_t policyFlags) = 0;
    [all...]
InputDispatcher.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 225 virtual void notifySwitch(nsecs_t when, uint32_t switchValues, uint32_t switchMask,
572 uint32_t switchValues, uint32_t switchMask, uint32_t /* policyFlags */) {
574 ALOGD("notifySwitch - when=%lld, switchValues=0x%08x, switchMask=0x%08x, policyFlags=0x%x",
575 when, switchValues, switchMask, policyFlags);
581 when, switchValues, switchMask);
    [all...]
  /frameworks/native/services/inputflinger/tests/
InputReader_test.cpp     [all...]

Completed in 782 milliseconds