Searched refs:mConferenceById (Results 1 - 2 of 2) sorted by path

/frameworks/base/telecomm/java/android/telecom/
H A DConnectionService.java111 private final Map<String, Conference> mConferenceById = new ConcurrentHashMap<>(); field in class:ConnectionService
1093 mConferenceById.put(id, conference);
1107 mConferenceById.remove(id);
1129 if (mConferenceById.containsKey(conferenceId)) {
1130 return mConferenceById.get(conferenceId);
H A DRemoteConnectionService.java196 mConferenceById.put(callId, conference);
200 mConferenceById.remove(callId);
320 for (RemoteConference c : mConferenceById.values()) {
324 mConferenceById.clear();
333 private final Map<String, RemoteConference> mConferenceById = new HashMap<>(); field in class:RemoteConnectionService
402 if (mConferenceById.containsKey(callId)) {
403 return mConferenceById.get(callId);
410 if (mConnectionById.isEmpty() && mConferenceById.isEmpty()) {

Completed in 164 milliseconds