Home
last modified time | relevance | path

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

/packages/services/Telephony/sip/src/com/android/services/telephony/sip/
DSipConnectionService.java93 connection.setDisconnected(new android.telecom.DisconnectCause( in onCreateOutgoingConnection()
104 connection.setDisconnected(new android.telecom.DisconnectCause( in onCreateOutgoingConnection()
118 connection.setDisconnected(DisconnectCauseUtil.toTelecomDisconnectCause( in onCreateOutgoingConnection()
125 connection.setDisconnected(DisconnectCauseUtil.toTelecomDisconnectCause( in onCreateOutgoingConnection()
DSipConnection.java268 setDisconnected(DisconnectCauseUtil.toTelecomDisconnectCause( in updateState()
/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()
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()
DNonSimulatorConnectionListener.java39 connection.setDisconnected(new DisconnectCause(DisconnectCause.REJECTED)); in onEvent()
49 connection.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.java101 c.setDisconnected(new DisconnectCause(DisconnectCause.REMOTE)); in onDisconnect()
142 setDisconnected(new DisconnectCause(DisconnectCause.MISSED));
206 setDisconnected(new DisconnectCause(DisconnectCause.REMOTE, "Line busy", in startOutgoing()
260 setDisconnected(new DisconnectCause(DisconnectCause.REMOTE)); in onDisconnect()
274 setDisconnected(new DisconnectCause(DisconnectCause.REJECTED)); in onReject()
DTestConnectionManager.java53 setDisconnected(disconnectCause);
272 setDisconnected(disconnectCause);
DSelfManagedConnection.java213 setDisconnected(new DisconnectCause(cause)); in setConnectionDisconnected()
/packages/services/Telephony/src/com/android/services/telephony/
DImsConference.java226 setDisconnected(disconnectCause);
1031 participant.setDisconnected(new DisconnectCause(DisconnectCause.CANCELED)); in handleConferenceParticipantsUpdate()
1158 entry.setDisconnected(new DisconnectCause(DisconnectCause.CANCELED, in startEmulatingSinglePartyCall()
1252 connection.setDisconnected(new DisconnectCause(DisconnectCause.CANCELED)); in disconnectConferenceParticipants()
1379 setDisconnected(new DisconnectCause(DisconnectCause.OTHER)); in handleOriginalConnectionChange()
1420 setDisconnected(disconnectCause); in setState()
DConferenceParticipantConnection.java114 setDisconnected(new DisconnectCause(DisconnectCause.CANCELED)); in updateState()
DTelephonyConnectionService.java563 conferenceHostConnection.setDisconnected(DisconnectCauseUtil.toTelecomDisconnectCause( in placeOutgoingConference()
2356 connection.setDisconnected(cause); in closeOrDestroyConnection()
DTelephonyConnection.java140 setDisconnected(DisconnectCauseUtil
2921 setDisconnected(disconnectCause); in setTelephonyConnectionDisconnected()
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/connserv/
DHfpClientConnection.java189 setDisconnected(new DisconnectCause(cause)); in close()
DHfpClientDeviceBlock.java310 mConference.setDisconnected(new DisconnectCause(DisconnectCause.LOCAL)); in updateConferenceableConnections()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DConnectionServiceFixture.java535 a.setDisconnected(id, mConnectionById.get(id).disconnectCause, null /*Session.Info*/); in sendSetDisconnected()
/packages/services/Telephony/tests/src/com/android/services/telephony/
DTelephonyConnectionServiceTest.java973 mConnection.setDisconnected(null); in testCreateOutgoingEmerge_exitingApm_disconnected()
/packages/services/Telecomm/src/com/android/server/telecom/
DConnectionServiceWrapper.java271 public void setDisconnected(String callId, DisconnectCause disconnectCause, in setDisconnected() method in ConnectionServiceWrapper.Adapter