Searched defs:mCalls (Results 1 - 6 of 6) sorted by relevance

/packages/services/Telecomm/src/com/android/server/telecom/
H A DCallIdMapper.java77 private final BiMap<String, Call> mCalls = new BiMap<>(); field in class:CallIdMapper
91 mCalls.put(callId, newCall);
99 mCalls.put(id, call);
112 mCalls.removeValue(call);
117 mCalls.remove(callId);
125 return mCalls.getKey(call);
139 return mCalls.getValue(callId);
143 mCalls.clear();
H A DCallsManager.java106 private final Set<Call> mCalls = Collections.newSetFromMap( field in class:CallsManager
201 if (!mCalls.contains(call)) {
353 return Collections.unmodifiableCollection(mCalls);
369 for (Call call : mCalls) {
378 for (Call call : mCalls) {
534 if (mCalls.contains(call)) {
558 } else if (!mCalls.contains(call)) {
559 // We check if mCalls already contains the call because we could potentially be reusing
631 if (!mCalls.contains(call)) {
680 if (!mCalls
[all...]
/packages/services/Telecomm/tests/src/com/android/server/telecom/testapps/
H A DTestConnectionService.java230 private final List<TestConnection> mCalls = new ArrayList<>(); field in class:TestConnectionService
380 mCalls.remove(connection);
386 if (mCalls.isEmpty() && mMediaPlayer != null && mMediaPlayer.isPlaying()) {
396 mCalls.add(connection);
402 freeConnections.addAll(mCalls);
/packages/apps/Settings/src/com/android/settings/notification/
H A DZenModeSettings.java131 private SwitchPreference mCalls; field in class:ZenModeSettings
170 mCalls = (SwitchPreference) important.findPreference(KEY_CALLS);
171 mCalls.setOnPreferenceChangeListener(new OnPreferenceChangeListener() {
402 if (mCalls != null) {
403 mCalls.setChecked(mConfig.allowCalls);
/packages/apps/Settings/src/com/android/settings/sim/
H A DSimSettings.java105 private SubscriptionInfo mCalls = null; field in class:SimSettings
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
H A DHeadsetClientStateMachine.java114 private Hashtable<Integer, BluetoothHeadsetClientCall> mCalls; field in class:HeadsetClientStateMachine
180 ProfileService.println(sb, "mCalls:");
181 for (BluetoothHeadsetClientCall call : mCalls.values()) {
214 while (mCalls.containsKey(id)) {
220 mCalls.put(id, c);
230 it = mCalls.entrySet().iterator();
247 for (BluetoothHeadsetClientCall c : mCalls.values()) {
256 for (BluetoothHeadsetClientCall c : mCalls.values()) {
269 for (BluetoothHeadsetClientCall c : mCalls.values()) {
281 for (BluetoothHeadsetClientCall c : mCalls
[all...]

Completed in 821 milliseconds