Searched refs:mChildConnections (Results 1 – 2 of 2) sorted by relevance
138 private final List<RemoteConnection> mChildConnections = new CopyOnWriteArrayList<>(); field in RemoteConference140 Collections.unmodifiableList(mChildConnections);164 for (RemoteConnection connection : mChildConnections) { in setDestroyed()207 if (!mChildConnections.contains(connection)) { in addConnection()208 mChildConnections.add(connection); in addConnection()225 if (mChildConnections.contains(connection)) { in removeConnection()226 mChildConnections.remove(connection); in removeConnection()415 if (mChildConnections.contains(connection)) { in separate()
82 private final List<Connection> mChildConnections = new CopyOnWriteArrayList<>(); field in Conference84 Collections.unmodifiableList(mChildConnections);458 if (connection != null && !mChildConnections.contains(connection)) { in addConnection()460 mChildConnections.add(connection); in addConnection()477 Log.d(this, "removing %s from %s", connection, mChildConnections); in removeConnection()478 if (connection != null && mChildConnections.remove(connection)) { in removeConnection()569 for (Connection connection : mChildConnections) { in destroy()