Home
last modified time | relevance | path

Searched refs:outgoingCall (Results 1 – 5 of 5) sorted by relevance

/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallsManagerTest.java1355 Call outgoingCall = addSpyCall(CallState.NEW); in testSpeakerDisabledWhenNoVideoCapabilities() local
1358 mCallsManager.placeOutgoingCall(outgoingCall, TEST_ADDRESS, null, true, in testSpeakerDisabledWhenNoVideoCapabilities()
1360 assertFalse(outgoingCall.getStartWithSpeakerphoneOn()); in testSpeakerDisabledWhenNoVideoCapabilities()
1486 Call outgoingCall = addSpyCall(CallState.CONNECTING); in testReuseCallConcurrency() local
1503 outgoingCall.getHandle(), outgoingCall.getTargetPhoneAccount(), new Bundle(), in testReuseCallConcurrency()
1508 mCallsManager.addToPendingCallsToDisconnect(outgoingCall); in testReuseCallConcurrency()
1521 assertEquals(CallState.DISCONNECTED, outgoingCall.getState()); in testReuseCallConcurrency()
DBasicCallTests.java1160 IdPair outgoingCall = startAndMakeActiveOutgoingCall("650-555-1212", in testUnmuteDuringEmergencyCall() local
1162 assertEquals(Call.STATE_ACTIVE, mInCallServiceFixtureX.getCall(outgoingCall.mCallId) in testUnmuteDuringEmergencyCall()
/packages/apps/Dialer/java/com/android/incallui/
DInCallActivity.java312 DialerCall outgoingCall = CallList.getInstance().getOutgoingCall(); in internalResolveIntent() local
313 if (outgoingCall == null) { in internalResolveIntent()
314 outgoingCall = CallList.getInstance().getPendingOutgoingCall(); in internalResolveIntent()
321 if (InCallPresenter.isCallWithNoValidAccounts(outgoingCall)) { in internalResolveIntent()
324 outgoingCall.disconnect(); in internalResolveIntent()
/packages/services/Telecomm/src/com/android/server/telecom/
DCallsManager.java4195 Call outgoingCall = getFirstCallWithState(OUTGOING_CALL_STATES);
4196 if (!outgoingCall.isEmergencyCall()) {
4198 outgoingCall.getAnalytics().setCallIsInterrupted(true);
4199 outgoingCall.disconnect("Disconnecting dialing call in favor of new dialing"
4203 if (outgoingCall.getState() == CallState.SELECT_PHONE_ACCOUNT) {
4208 outgoingCall.getAnalytics().setCallIsInterrupted(true);
4209 outgoingCall.disconnect("Disconnecting call in SELECT_PHONE_ACCOUNT in favor"
4331 Call outgoingCall = getFirstCallWithState(OUTGOING_CALL_STATES);
4332 if (outgoingCall.getState() == CallState.SELECT_PHONE_ACCOUNT) {
4336 outgoingCall.getAnalytics().setCallIsInterrupted(true);
[all …]
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/telephony/
DBluetoothInCallServiceTest.java974 BluetoothCall outgoingCall = createOutgoingCall(); in testOnCallStateChangedAlerting() local
975 mBluetoothInCallService.onCallAdded(outgoingCall); in testOnCallStateChangedAlerting()
976 mBluetoothInCallService.getCallback(outgoingCall) in testOnCallStateChangedAlerting()
977 .onStateChanged(outgoingCall, Call.STATE_DIALING); in testOnCallStateChangedAlerting()