• Home
  • Raw
  • Download

Lines Matching refs:connection

55         public void onConnectionAdded(Conference conference, Connection connection) {}  in onConnectionAdded()  argument
56 public void onConnectionRemoved(Conference conference, Connection connection) {} in onConnectionRemoved() argument
285 public void onSeparate(Connection connection) {} in onSeparate() argument
293 public void onMerge(Connection connection) {} in onMerge() argument
353 public void onConnectionAdded(Connection connection) {} in onConnectionAdded() argument
435 public final boolean addConnection(Connection connection) { in addConnection() argument
436 Log.d(this, "Connection=%s, connection=", connection); in addConnection()
437 if (connection != null && !mChildConnections.contains(connection)) { in addConnection()
438 if (connection.setConference(this)) { in addConnection()
439 mChildConnections.add(connection); in addConnection()
440 onConnectionAdded(connection); in addConnection()
442 l.onConnectionAdded(this, connection); in addConnection()
455 public final void removeConnection(Connection connection) { in removeConnection() argument
456 Log.d(this, "removing %s from %s", connection, mChildConnections); in removeConnection()
457 if (connection != null && mChildConnections.remove(connection)) { in removeConnection()
458 connection.resetConference(); in removeConnection()
460 l.onConnectionRemoved(this, connection); in removeConnection()
532 for (Connection connection : mChildConnections) { in destroy()
533 Log.d(this, "removing connection %s", connection); in destroy()
534 removeConnection(connection); in destroy()