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

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

Completed in 150 milliseconds