Searched defs:mChildConnections (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/telecomm/java/android/telecom/
H A DRemoteConference.java139 private final List<RemoteConnection> mChildConnections = new CopyOnWriteArrayList<>(); field in class:RemoteConference
141 Collections.unmodifiableList(mChildConnections);
165 for (RemoteConnection connection : mChildConnections) {
208 if (!mChildConnections.contains(connection)) {
209 mChildConnections.add(connection);
226 if (mChildConnections.contains(connection)) {
227 mChildConnections.remove(connection);
413 if (mChildConnections.contains(connection)) {
H A DConference.java66 private final List<Connection> mChildConnections = new CopyOnWriteArrayList<>(); field in class:Conference
68 Collections.unmodifiableList(mChildConnections);
419 if (connection != null && !mChildConnections.contains(connection)) {
421 mChildConnections.add(connection);
438 Log.d(this, "removing %s from %s", connection, mChildConnections);
439 if (connection != null && mChildConnections.remove(connection)) {
514 for (Connection connection : mChildConnections) {

Completed in 70 milliseconds