Home
last modified time | relevance | path

Searched refs:otherCall (Results 1 – 6 of 6) sorted by relevance

/packages/services/Telecomm/src/com/android/server/telecom/
DInCallAdapter.java294 Call otherCall = mCallIdMapper.getCall(otherCallId); in conference() local
295 if (call != null && otherCall != null) { in conference()
296 mCallsManager.conference(call, otherCall); in conference()
DConnectionServiceWrapper.java595 Call otherCall = mCallIdMapper.getCall(otherId); in setConferenceableConnections() local
596 if (otherCall != null && otherCall != call) { in setConferenceableConnections()
597 conferenceableCalls.add(otherCall); in setConferenceableConnections()
933 void conference(final Call call, Call otherCall) { in conference() argument
935 final String otherCallId = mCallIdMapper.getCallId(otherCall); in conference()
DParcelableCallUtils.java115 for (Call otherCall : conferenceableCalls) { in toParcelableCall()
116 conferenceableCallIds.add(otherCall.getId()); in toParcelableCall()
DBluetoothPhoneServiceImpl.java327 for (Call otherCall : mCallsManager.getCalls()) {
328 if (otherCall.getState() == CallState.CONNECTING) {
DCall.java1467 void conferenceWith(Call otherCall) { in conferenceWith() argument
1471 Log.event(this, Log.Events.CONFERENCE_WITH, otherCall); in conferenceWith()
1472 mConnectionService.conference(this, otherCall); in conferenceWith()
DCallsManager.java973 public void conference(Call call, Call otherCall) { in conference() argument
974 call.conferenceWith(otherCall); in conference()