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

  /frameworks/base/services/java/com/android/server/
WiredAccessoryManager.java 111 int switchValues = 0;
113 switchValues |= SW_HEADPHONE_INSERT_BIT;
116 switchValues |= SW_MICROPHONE_INSERT_BIT;
118 notifyWiredAccessoryChanged(0, switchValues,
126 public void notifyWiredAccessoryChanged(long whenNanos, int switchValues, int switchMask) {
128 + " bits=" + switchCodeToString(switchValues, switchMask)
133 mSwitchValues = (mSwitchValues & ~switchMask) | switchValues;
272 private String switchCodeToString(int switchValues, int switchMask) {
275 (switchValues & SW_HEADPHONE_INSERT_BIT) != 0) {
279 (switchValues & SW_MICROPHONE_INSERT_BIT) != 0)
    [all...]
  /frameworks/base/services/input/
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 254 uint32_t switchValues, uint32_t switchMask, uint32_t policyFlags) = 0;
    [all...]
InputDispatcher.cpp     [all...]
  /frameworks/base/services/input/tests/
InputDispatcher_test.cpp 90 uint32_t switchValues, uint32_t switchMask, uint32_t policyFlags) {
InputReader_test.cpp     [all...]
  /frameworks/base/services/java/com/android/server/input/
InputManagerService.java     [all...]
  /frameworks/base/services/jni/
com_android_server_input_InputManagerService.cpp 191 virtual void notifySwitch(nsecs_t when, uint32_t switchValues, uint32_t switchMask,
533 uint32_t switchValues, uint32_t switchMask, uint32_t policyFlags) {
535 ALOGD("notifySwitch - when=%lld, switchValues=0x%08x, switchMask=0x%08x, policyFlags=0x%x",
536 when, switchValues, switchMask, policyFlags);
542 when, switchValues, switchMask);
    [all...]

Completed in 459 milliseconds