Home | History | Annotate | Download | only in telecom

Lines Matching defs:connection

4 import android.telecom.Connection;
21 void onDestroyed(CtsConnection connection) {
23 mConnections.remove(connection);
80 public Connection onCreateIncomingConnection(PhoneAccountHandle connectionManagerPhoneAccount,
86 public Connection onCreateOutgoingConnection(PhoneAccountHandle connectionManagerAccount,
91 private Connection createConnection(ConnectionRequest request, boolean isIncoming) {
94 CtsConnection connection = new CtsConnection(getApplicationContext(), isIncoming,
96 connection.setConnectionCapabilities(Connection.CAPABILITY_SUPPORT_HOLD |
97 Connection.CAPABILITY_HOLD);
98 connection.setAddress(request.getAddress(), TelecomManager.PRESENTATION_ALLOWED);
99 connection.setExtras(request.getExtras());
104 connection.putExtras(moreExtras);
105 connection.setVideoState(request.getVideoState());
108 mConnections.add(connection);
113 return connection;