Home
last modified time | relevance | path

Searched refs:dialingCall (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/telephony/
DBluetoothInCallServiceTest.java755 BluetoothCall dialingCall = createForegroundCall(UUID.randomUUID()); in testAlertingCallClccResponse() local
756 calls.add(dialingCall); in testAlertingCallClccResponse()
757 mBluetoothInCallService.onCallAdded(dialingCall); in testAlertingCallClccResponse()
759 when(dialingCall.getState()).thenReturn(Call.STATE_DIALING); in testAlertingCallClccResponse()
760 when(dialingCall.isIncoming()).thenReturn(false); in testAlertingCallClccResponse()
761 when(dialingCall.isConference()).thenReturn(false); in testAlertingCallClccResponse()
762 when(dialingCall.getHandle()).thenReturn(Uri.parse("tel:555-0000")); in testAlertingCallClccResponse()
763 when(dialingCall.getGatewayInfo()) in testAlertingCallClccResponse()
793 BluetoothCall dialingCall = createForegroundCall(UUID.randomUUID()); in testHoldingCallClccResponse() local
794 calls.add(dialingCall); in testHoldingCallClccResponse()
[all …]
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/telephony/
DBluetoothInCallService.java554 BluetoothCall dialingCall = mCallInfo.getOutgoingCall(); in isHighDefCallInProgress() local
560 } else if (dialingCall != null) { in isHighDefCallInProgress()
562 Bundle extras = dialingCall.getDetails().getExtras(); in isHighDefCallInProgress()
567 isHighDef = dialingCall.isHighDefAudio(); in isHighDefCallInProgress()
1307 BluetoothCall dialingCall = mCallInfo.getOutgoingCall(); in getBluetoothCallStateForUpdate() local
1322 } else if (!mCallInfo.isNullCall(dialingCall)) { in getBluetoothCallStateForUpdate()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallsManagerTest.java3555 Call dialingCall = addSpyCall(accountHande, CallState.DIALING); in testGetNumUnholdableCallsForOtherConnectionService() local
3556 when(dialingCall.can(Connection.CAPABILITY_HOLD)).thenReturn(true); in testGetNumUnholdableCallsForOtherConnectionService()