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

  /frameworks/base/services/input/
InputListener.h 119 uint32_t switchValues;
125 uint32_t switchValues, uint32_t switchMask);
  /frameworks/base/services/java/com/android/server/
WiredAccessoryManager.java 110 int switchValues = 0;
112 switchValues |= SW_HEADPHONE_INSERT_BIT;
115 switchValues |= SW_MICROPHONE_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;
271 private String switchCodeToString(int switchValues, int switchMask) {
274 (switchValues & SW_HEADPHONE_INSERT_BIT) != 0) {
278 (switchValues & SW_MICROPHONE_INSERT_BIT) != 0)
    [all...]

Completed in 107 milliseconds