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

  /packages/services/Telephony/common/src/com/android/services/telephony/common/
AudioMode.java 24 public static int EARPIECE = 0x00000001;
29 public static int WIRED_OR_EARPIECE = EARPIECE | WIRED_HEADSET;
30 public static int ALL_MODES = EARPIECE | BLUETOOTH | WIRED_HEADSET | SPEAKER;
38 if ((mode & EARPIECE) == EARPIECE) {
39 listAppend(buffer, "EARPIECE");
  /packages/services/Telephony/src/com/android/phone/
AudioRouter.java 52 private int mAudioMode = AudioMode.EARPIECE;
53 private int mPreviousMode = AudioMode.EARPIECE;
116 // changes WIRED_OR_EARPIECE to appropriate single entry WIRED_HEADSET or EARPIECE
148 // Wired headset and earpiece work the same way
149 } else if (AudioMode.EARPIECE == mode || AudioMode.WIRED_HEADSET == mode) {
224 newMode = AudioMode.EARPIECE;
236 newMode = pluggedIn ? AudioMode.WIRED_HEADSET : AudioMode.EARPIECE;
244 * Changes WIRED_OR_EARPIECE to appropriate single entry WIRED_HEADSET or EARPIECE.
256 Log.wtf(LOG_TAG, "One of wired headset or earpiece should always be valid.");
257 // assume earpiece in this case
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
AudioModeProvider.java 32 private int mAudioMode = AudioMode.EARPIECE;

Completed in 79 milliseconds