Home
last modified time | relevance | path

Searched refs:setDisconnected (Results 1 – 21 of 21) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/simulator/impl/
DSimulatorConnectionsBankImpl.java83 connection.setDisconnected(new DisconnectCause(DisconnectCause.LOCAL)); in disconnectAllConnections()
137 connection.setDisconnected(new DisconnectCause(DisconnectCause.LOCAL)); in onEvent()
139 conference.setDisconnected(new DisconnectCause(DisconnectCause.LOCAL)); in onEvent()
DNonSimulatorConnectionListener.java39 connection.setDisconnected(new DisconnectCause(DisconnectCause.REJECTED)); in onEvent()
49 connection.setDisconnected(new DisconnectCause(DisconnectCause.LOCAL)); in onEvent()
DSimulatorConferenceCreator.java181 connection.setDisconnected(new DisconnectCause(DisconnectCause.LOCAL)); in onEvent()
205 connection.setDisconnected(new DisconnectCause(DisconnectCause.LOCAL)); in onEvent()
207 conference.setDisconnected(new DisconnectCause(DisconnectCause.LOCAL)); in onEvent()
DSimulatorRttCall.java109 connection.setDisconnected(new DisconnectCause(DisconnectCause.REJECTED)); in onEvent()
120 connection.setDisconnected(new DisconnectCause(DisconnectCause.LOCAL)); in onEvent()
DSimulatorVideoCall.java124 connection.setDisconnected(new DisconnectCause(DisconnectCause.REJECTED)); in onEvent()
133 connection.setDisconnected(new DisconnectCause(DisconnectCause.LOCAL)); in onEvent()
DSimulatorVoiceCall.java198 connection.setDisconnected(new DisconnectCause(DisconnectCause.REJECTED)); in onEvent()
208 connection.setDisconnected(new DisconnectCause(DisconnectCause.LOCAL)); in onEvent()
DSimulatorMissedCallCreator.java59 connection.setDisconnected(new DisconnectCause(DisconnectCause.MISSED)); in onNewIncomingConnection()
DSimulatorConference.java167 setDisconnected(connection.getDisconnectCause()); in onGsmEvent()
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
DTestConnectionService.java100 c.setDisconnected(new DisconnectCause(DisconnectCause.REMOTE)); in onDisconnect()
141 setDisconnected(new DisconnectCause(DisconnectCause.MISSED));
205 setDisconnected(new DisconnectCause(DisconnectCause.REMOTE, "Line busy", in startOutgoing()
259 setDisconnected(new DisconnectCause(DisconnectCause.REMOTE)); in onDisconnect()
273 setDisconnected(new DisconnectCause(DisconnectCause.REJECTED)); in onReject()
DTestConnectionManager.java52 setDisconnected(disconnectCause);
271 setDisconnected(disconnectCause);
DSelfManagedConnection.java213 setDisconnected(new DisconnectCause(cause)); in setConnectionDisconnected()
/packages/services/Telephony/src/com/android/services/telephony/
DImsConference.java229 setDisconnected(disconnectCause);
1086 participant.setDisconnected(new DisconnectCause(DisconnectCause.CANCELED)); in handleConferenceParticipantsUpdate()
1226 entry.setDisconnected(new DisconnectCause(DisconnectCause.CANCELED, in startEmulatingSinglePartyCall()
1321 connection.setDisconnected(new DisconnectCause(DisconnectCause.CANCELED)); in disconnectConferenceParticipants()
1472 setDisconnected(new DisconnectCause(DisconnectCause.OTHER)); in handleOriginalConnectionChange()
1513 setDisconnected(disconnectCause); in setState()
DConferenceParticipantConnection.java134 setDisconnected(new DisconnectCause(DisconnectCause.CANCELED)); in updateState()
DTelephonyConnectionService.java940 conferenceHostConnection.setDisconnected(DisconnectCauseUtil.toTelecomDisconnectCause( in placeOutgoingConference()
2258 connection.setDisconnected(DisconnectCauseUtil.toTelecomDisconnectCause( in placeOutgoingConnection()
3365 connection.setDisconnected(mDisconnectCauseFactory.toTelecomDisconnectCause( in onNormalCallRedial()
4255 connection.setDisconnected(cause); in closeOrDestroyConnection()
DTelephonyConnection.java371 setDisconnected(DisconnectCauseUtil in onOriginalConnectionRedialed()
3368 setDisconnected(disconnectCause); in setTelephonyConnectionDisconnected()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/hfpclient/
DHfpClientConnection.java185 setDisconnected(new DisconnectCause(cause)); in close()
DHfpClientDeviceBlock.java311 mConference.setDisconnected(new DisconnectCause(DisconnectCause.LOCAL)); in updateConferenceableConnections()
/packages/services/Telephony/tests/src/com/android/services/telephony/
DTelephonyConnectionServiceTest.java1314 mConnection.setDisconnected(null); in testCreateOutgoingEmerge_exitingApm_disconnected()
2741 mConnection.setDisconnected(null); in testDomainSelectionNormalRoutingEmergencyNumber_exitingApm_InService()
2766 mConnection.setDisconnected(null); in testDomainSelectionNormalRoutingEmergencyNumber_exitingApm_Timeout()
2802 mConnection.setDisconnected(null); in testDomainSelectionNormalRoutingEmergencyNumber_exitingApm_CombinedAttach()
2839 mConnection.setDisconnected(null); in testDomainSelectionNormalRoutingEmergencyNumber_exitingApm_PsOnly()
2876 mConnection.setDisconnected(null); in testDomainSelectionNormalRoutingEmergencyNumber_exitingApm_PsOnly_ImsRegistered()
2890 mConnection.setDisconnected(null); in testDomainSelectionNormalRoutingEmergencyNumber_exitingApm_DiscardDialing()
3468 c.setDisconnected(null); in testDomainSelectionListenOriginalConnectionConfigChange()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/hfpclient/connserv/
DHfpClientConnectionTest.java204 mHfpClientConnection.setDisconnected(new DisconnectCause(DisconnectCause.LOCAL)); in multiPartyCallOnAddedDisconnected_notInConference()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DConnectionServiceFixture.java582 a.setDisconnected(id, mConnectionById.get(id).disconnectCause, null /*Session.Info*/); in sendSetDisconnected()
/packages/services/Telecomm/src/com/android/server/telecom/
DConnectionServiceWrapper.java343 public void setDisconnected(String callId, DisconnectCause disconnectCause, in setDisconnected() method in ConnectionServiceWrapper.Adapter