Searched defs:connection1 (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/connserv/
H A DHfpClientConnectionService.java250 public void onConference(Connection connection1, Connection connection2) { argument
252 Log.d(TAG, "onConference " + connection1 + " " + connection2);
255 BluetoothDevice bd1 = ((HfpClientConnection) connection1).getDevice();
260 + "bd1 " + bd1 + " bd2 " + bd2 + " conn1 " + connection1
266 block.onConference(connection1, connection2);
H A DHfpClientDeviceBlock.java142 synchronized void onConference(Connection connection1, Connection connection2) { argument
148 if (connection1.getConference() == null) {
149 mConference.addConnection(connection1);
/packages/services/Telephony/src/com/android/services/telephony/
H A DTelephonyConnectionService.java798 * {@link TelephonyConnection#performConference(Connection)} on either {@code connection1} or
801 * @param connection1 A connection to merge into a conference call.
805 public void onConference(Connection connection1, Connection connection2) { argument
806 if (connection1 instanceof TelephonyConnection) {
807 ((TelephonyConnection) connection1).performConference(connection2);
809 ((TelephonyConnection) connection2).performConference(connection1);
812 "Connection1: %s, Connection2: %2", connection1, connection2);

Completed in 107 milliseconds