Home
last modified time | relevance | path

Searched refs:otherCallId (Results 1 – 3 of 3) sorted by relevance

/packages/services/Telecomm/src/com/android/server/telecom/
DInCallAdapter.java178 public void consultativeTransfer(String callId, String otherCallId) { in consultativeTransfer() argument
184 Log.i(this, "consultativeTransfer - %s, %s", callId, otherCallId); in consultativeTransfer()
186 Call otherCall = mCallIdMapper.getCall(otherCallId); in consultativeTransfer()
191 callId, otherCallId); in consultativeTransfer()
436 public void conference(String callId, String otherCallId) { in conference() argument
443 Call otherCall = mCallIdMapper.getCall(otherCallId); in conference()
447 Log.w(this, "conference, unknown call id: %s or %s", callId, otherCallId); in conference()
DConnectionServiceWrapper.java1647 final String otherCallId = mCallIdMapper.getCallId(otherCall); in transfer() local
1648 if (callId != null && otherCallId != null && isServiceValid("consultativeTransfer")) { in transfer()
1651 mServiceInterface.consultativeTransfer(callId, otherCallId, in transfer()
1731 final String otherCallId = mCallIdMapper.getCallId(otherCall); in conference() local
1732 if (callId != null && otherCallId != null && isServiceValid("conference")) { in conference()
1734 logOutgoing("conference %s %s", callId, otherCallId); in conference()
1735 mServiceInterface.conference(callId, otherCallId, Log.getExternalSession()); in conference()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DConnectionServiceFixture.java307 public void consultativeTransfer(String callId, String otherCallId, in consultativeTransfer() argument