Home | History | Annotate | Download | only in telecom

Lines Matching full:connection

40  * Remote connection service which other connection services can use to place calls on their behalf.
60 RemoteConnection connection =
62 if (connection != NULL_CONNECTION && mPendingConnections.contains(connection)) {
63 mPendingConnections.remove(connection);
64 // Unconditionally initialize the connection ...
65 connection.setConnectionCapabilities(parcel.getConnectionCapabilities());
66 connection.setConnectionProperties(parcel.getConnectionProperties());
68 || parcel.getState() != Connection.STATE_DISCONNECTED) {
69 connection.setAddress(parcel.getHandle(), parcel.getHandlePresentation());
72 || parcel.getState() != Connection.STATE_DISCONNECTED) {
73 connection.setCallerDisplayName(
77 // Set state after handle so that the client can identify the connection.
78 if (parcel.getState() == Connection.STATE_DISCONNECTED) {
79 connection.setDisconnected(parcel.getDisconnectCause());
81 connection.setState(parcel.getState());
89 connection.setConferenceableConnections(conferenceable);
90 connection.setVideoState(parcel.getVideoState());
91 if (connection.getState() == Connection.STATE_DISCONNECTED) {
94 connection.setDestroyed();
96 connection.setStatusHints(parcel.getStatusHints());
97 connection.setIsVoipAudioMode(parcel.getIsVoipAudioMode());
98 connection.setRingbackRequested(parcel.isRingbackRequested());
99 connection.putExtras(parcel.getExtras());
107 .setState(Connection.STATE_ACTIVE);
110 .setState(Connection.STATE_ACTIVE);
117 .setState(Connection.STATE_RINGING);
123 .setState(Connection.STATE_DIALING);
129 .setState(Connection.STATE_PULLING_CALL);
148 .setState(Connection.STATE_HOLDING);
151 .setState(Connection.STATE_HOLDING);
189 RemoteConnection connection =
191 if (connection != NULL_CONNECTION) {
193 // 'connection' is being split from its conference
194 if (connection.getConference() != null) {
195 connection.getConference().removeConnection(connection);
201 conference.addConnection(connection);
211 // in the underlying connection or conference objects
236 // created by, and therefore being tracked by, this remote connection service. It
248 // Stash the original connection ID as it exists in the source ConnectionService.
250 // See comments on Connection.EXTRA_ORIGINAL_CONNECTION_ID for more information.
252 newExtras.putString(Connection.EXTRA_ORIGINAL_CONNECTION_ID, callId);
292 // Not supported from remote connection service.
369 public void addExistingConnection(String callId, ParcelableConnection connection,
376 mOutgoingConnectionServiceRpc, connection, callingPackage,
381 public void onDestroyed(RemoteConnection connection) {
413 // connections to go through a connection mgr.
527 RemoteConnection connection =
529 mPendingConnections.add(connection);
530 mConnectionById.put(id, connection);
538 connection.registerCallback(new RemoteConnection.Callback() {
540 public void onDestroyed(RemoteConnection connection) {
545 return connection;
561 Log.w(this, "%s - Cannot find Connection %s", action, callId);