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

  /packages/services/Telephony/src/com/android/services/telephony/
TelephonyConferenceController.java 69 private final List<TelephonyConnection> mTelephonyConnections = new ArrayList<>();
86 if (mTelephonyConnections.contains(connection)) {
91 mTelephonyConnections.add(connection);
97 if (!mTelephonyConnections.contains(connection)) {
104 mTelephonyConnections.remove(connection);
126 Log.v(this, "recalculateConferenceable : %d", mTelephonyConnections.size());
127 HashSet<Connection> conferenceableConnections = new HashSet<>(mTelephonyConnections.size());
130 for (TelephonyConnection connection : mTelephonyConnections) {
166 List<Connection> nonConferencedConnections = mTelephonyConnections
186 for (TelephonyConnection connection : mTelephonyConnections) {
    [all...]
ImsConferenceController.java 99 private final ArrayList<TelephonyConnection> mTelephonyConnections = new ArrayList<>();
133 if (mTelephonyConnections.contains(connection)) {
145 mTelephonyConnections.add(connection);
162 if (!mTelephonyConnections.contains(connection)) {
174 mTelephonyConnections.remove(connection);
191 Log.v(this, "recalculateConferenceable : %d", mTelephonyConnections.size());
192 HashSet<Conferenceable> conferenceableSet = new HashSet<>(mTelephonyConnections.size() +
197 for (TelephonyConnection connection : mTelephonyConnections) {
323 Iterator<TelephonyConnection> it = mTelephonyConnections.iterator();

Completed in 79 milliseconds