Home
last modified time | relevance | path

Searched refs:mChildConnections (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/telecomm/java/android/telecom/
DRemoteConference.java138 private final List<RemoteConnection> mChildConnections = new CopyOnWriteArrayList<>(); field in RemoteConference
140 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()
DConference.java82 private final List<Connection> mChildConnections = new CopyOnWriteArrayList<>(); field in Conference
84 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()