HomeSort by relevance Sort by last modified time
    Searched refs:mChildConnections (Results 1 - 2 of 2) sorted by null

  /frameworks/base/telecomm/java/android/telecom/
RemoteConference.java 138 private final List<RemoteConnection> mChildConnections = new CopyOnWriteArrayList<>();
140 Collections.unmodifiableList(mChildConnections);
164 for (RemoteConnection connection : mChildConnections) {
207 if (!mChildConnections.contains(connection)) {
208 mChildConnections.add(connection);
225 if (mChildConnections.contains(connection)) {
226 mChildConnections.remove(connection);
415 if (mChildConnections.contains(connection)) {
Conference.java 68 private final List<Connection> mChildConnections = new CopyOnWriteArrayList<>();
70 Collections.unmodifiableList(mChildConnections);
424 if (connection != null && !mChildConnections.contains(connection)) {
426 mChildConnections.add(connection);
443 Log.d(this, "removing %s from %s", connection, mChildConnections);
444 if (connection != null && mChildConnections.remove(connection)) {
519 for (Connection connection : mChildConnections) {

Completed in 152 milliseconds