HomeSort by relevance Sort by last modified time
    Searched refs:ROUTE_BLUETOOTH (Results 1 - 25 of 54) sorted by null

1 2 3

  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
CallAudioRouteTransitionTests.java 195 params.initialRoute == CallAudioState.ROUTE_BLUETOOTH);
197 (params.availableRoutes & CallAudioState.ROUTE_BLUETOOTH) != 0
198 || (params.expectedAvailableRoutes & CallAudioState.ROUTE_BLUETOOTH) != 0);
262 if (mParams.initialRoute == CallAudioState.ROUTE_BLUETOOTH) {
341 (mParams.availableRoutes & CallAudioState.ROUTE_BLUETOOTH) != 0
342 || (mParams.expectedAvailableRoutes & CallAudioState.ROUTE_BLUETOOTH) != 0);
391 CallAudioState.ROUTE_BLUETOOTH, // initialRoute
392 CallAudioState.ROUTE_EARPIECE | CallAudioState.ROUTE_BLUETOOTH, // availableRoutes
397 CallAudioState.ROUTE_WIRED_HEADSET | CallAudioState.ROUTE_BLUETOOTH, // expectedAvai
428 CallAudioState.ROUTE_WIRED_HEADSET | CallAudioState.ROUTE_BLUETOOTH, // availableRo
    [all...]
CallAudioRouteStateMachineTest.java 197 CallAudioState initState = new CallAudioState(false, CallAudioState.ROUTE_BLUETOOTH,
198 CallAudioState.ROUTE_EARPIECE | CallAudioState.ROUTE_BLUETOOTH);
209 CallAudioState.ROUTE_EARPIECE | CallAudioState.ROUTE_BLUETOOTH);
241 CallAudioState initState = new CallAudioState(false, CallAudioState.ROUTE_BLUETOOTH,
242 CallAudioState.ROUTE_EARPIECE | CallAudioState.ROUTE_BLUETOOTH);
255 CallAudioState.ROUTE_EARPIECE | CallAudioState.ROUTE_BLUETOOTH,
274 CallAudioState.ROUTE_BLUETOOTH,
275 CallAudioState.ROUTE_EARPIECE | CallAudioState.ROUTE_BLUETOOTH,
315 CallAudioState initState = new CallAudioState(false, CallAudioState.ROUTE_BLUETOOTH,
316 CallAudioState.ROUTE_EARPIECE | CallAudioState.ROUTE_BLUETOOTH);
    [all...]
  /packages/apps/Dialer/java/com/android/incallui/speakerbuttonlogic/
SpeakerButtonInfo.java 46 if ((audioState.getSupportedRouteMask() & CallAudioState.ROUTE_BLUETOOTH)
47 == CallAudioState.ROUTE_BLUETOOTH) {
52 if ((audioState.getRoute() & CallAudioState.ROUTE_BLUETOOTH)
53 == CallAudioState.ROUTE_BLUETOOTH) {
  /frameworks/base/telecomm/java/android/telecom/
AudioState.java 38 public static final int ROUTE_BLUETOOTH = 0x00000002;
53 private static final int ROUTE_ALL = ROUTE_EARPIECE | ROUTE_BLUETOOTH | ROUTE_WIRED_HEADSET |
109 if ((route & ROUTE_BLUETOOTH) == ROUTE_BLUETOOTH) {
CallAudioState.java 45 @IntDef(value={ROUTE_EARPIECE, ROUTE_BLUETOOTH, ROUTE_WIRED_HEADSET, ROUTE_SPEAKER},
53 public static final int ROUTE_BLUETOOTH = 0x00000002;
72 public static final int ROUTE_ALL = ROUTE_EARPIECE | ROUTE_BLUETOOTH | ROUTE_WIRED_HEADSET |
88 * {@link #ROUTE_BLUETOOTH}
94 * {@link #ROUTE_BLUETOOTH}
197 * Will not be {@code null} if {@link #getRoute()} returns {@link #ROUTE_BLUETOOTH}.
226 if ((route & ROUTE_BLUETOOTH) == ROUTE_BLUETOOTH) {
InCallAdapter.java 161 mAdapter.setAudioRoute(CallAudioState.ROUTE_BLUETOOTH, bluetoothAddress);
PhoneAccount.java     [all...]
  /packages/apps/Dialer/java/com/android/incallui/video/impl/
SpeakerButtonController.java 73 if ((audioState.getSupportedRouteMask() & CallAudioState.ROUTE_BLUETOOTH)
74 == CallAudioState.ROUTE_BLUETOOTH) {
78 if ((audioState.getRoute() & CallAudioState.ROUTE_BLUETOOTH)
79 == CallAudioState.ROUTE_BLUETOOTH) {
  /packages/apps/Dialer/java/com/android/incallui/audiomode/
AudioModeProvider.java 31 | CallAudioState.ROUTE_BLUETOOTH
99 return CallAudioState.ROUTE_BLUETOOTH;
  /packages/services/Telecomm/src/com/android/server/telecom/
CallAudioRouteStateMachine.java 83 public static final int ROUTE_BLUETOOTH = CallAudioState.ROUTE_BLUETOOTH;
145 put(CallAudioState.ROUTE_BLUETOOTH, LogUtils.Events.AUDIO_ROUTE_BT);
274 addedRoutes |= ROUTE_BLUETOOTH;
276 removedRoutes |= ROUTE_BLUETOOTH;
360 if ((mAvailableRoutes & ROUTE_BLUETOOTH) != 0) {
436 if ((mAvailableRoutes & ROUTE_BLUETOOTH) != 0) {
558 if ((mAvailableRoutes & ROUTE_BLUETOOTH) != 0) {
634 if ((mAvailableRoutes & ROUTE_BLUETOOTH) != 0) {
727 CallAudioState newState = new CallAudioState(mIsMuted, ROUTE_BLUETOOTH,
    [all...]
CallAudioManager.java 414 * {@link CallAudioState#ROUTE_BLUETOOTH}.
419 case CallAudioState.ROUTE_BLUETOOTH:
  /cts/tests/tests/telecom/src/android/telecom/cts/
CallTest.java 118 CallAudioState cas = new CallAudioState(false, CallAudioState.ROUTE_BLUETOOTH,
119 CallAudioState.ROUTE_BLUETOOTH + CallAudioState.ROUTE_SPEAKER
  /packages/apps/Dialer/java/com/android/incallui/
NewReturnToCallActionReceiver.java 81 if ((audioState.getSupportedRouteMask() & CallAudioState.ROUTE_BLUETOOTH)
82 == CallAudioState.ROUTE_BLUETOOTH) {
AudioRouteSelectorActivity.java 58 } else if (audioRoute == CallAudioState.ROUTE_BLUETOOTH) {
ProximitySensor.java 223 || CallAudioState.ROUTE_BLUETOOTH == audioRoute
CallButtonPresenter.java 191 if (0 != (CallAudioState.ROUTE_BLUETOOTH & audioState.getSupportedRouteMask())) {
StatusBarNotifier.java     [all...]
  /packages/apps/Dialer/java/com/android/incallui/audioroute/
AudioRouteSelectorDialogFragment.java 80 CallAudioState.ROUTE_BLUETOOTH,
  /packages/apps/Car/Dialer/src/com/android/car/dialer/ui/
OnGoingCallControllerBarFragment.java 206 case CallAudioState.ROUTE_BLUETOOTH:
221 case CallAudioState.ROUTE_BLUETOOTH:
  /packages/apps/Car/Dialer/src/com/android/car/dialer/telecom/
UiCallManager.java 311 audioRouteList.add(CallAudioState.ROUTE_BLUETOOTH);
320 } else if ((supportedAudioRouteMask & CallAudioState.ROUTE_BLUETOOTH) != 0) {
321 audioRouteList.add(CallAudioState.ROUTE_BLUETOOTH);
361 if (audioRoute == CallAudioState.ROUTE_BLUETOOTH) {
  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
SelfManagedCallListAdapter.java 167 case CallAudioState.ROUTE_BLUETOOTH:
TestInCallUI.java 233 case CallAudioState.ROUTE_BLUETOOTH:
  /packages/apps/Car/Dialer/src/com/android/car/dialer/
OngoingCallFragment.java 465 boolean supportsBluetooth = (supportedAudioRouteMask & CallAudioState.ROUTE_BLUETOOTH) != 0;
468 mUiCallManager.getAudioRoute() == CallAudioState.ROUTE_BLUETOOTH;
471 mUiCallManager.setAudioRoute(CallAudioState.ROUTE_BLUETOOTH);
  /frameworks/base/media/java/android/media/
AudioSystem.java 136 @Deprecated public static final int ROUTE_BLUETOOTH = (1 << 2);
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
InCallServiceImpl.java     [all...]

Completed in 357 milliseconds

1 2 3