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.java180 public void consultativeTransfer(String callId, String otherCallId) { in consultativeTransfer() argument
187 Log.i(this, "consultativeTransfer - %s, %s", callId, otherCallId); in consultativeTransfer()
189 Call otherCall = mCallIdMapper.getCall(otherCallId); in consultativeTransfer()
194 callId, otherCallId); in consultativeTransfer()
441 public void conference(String callId, String otherCallId) { in conference() argument
448 Call otherCall = mCallIdMapper.getCall(otherCallId); in conference()
452 Log.w(this, "conference, unknown call id: %s or %s", callId, otherCallId); in conference()
DConnectionServiceWrapper.java1662 final String otherCallId = mCallIdMapper.getCallId(otherCall); in transfer() local
1663 if (callId != null && otherCallId != null && isServiceValid("consultativeTransfer")) { in transfer()
1666 mServiceInterface.consultativeTransfer(callId, otherCallId, in transfer()
1749 final String otherCallId = mCallIdMapper.getCallId(otherCall); in conference() local
1750 if (callId != null && otherCallId != null && isServiceValid("conference")) { in conference()
1752 logOutgoing("conference %s %s", callId, otherCallId); in conference()
1753 mServiceInterface.conference(callId, otherCallId, in conference()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DConnectionServiceFixture.java307 public void consultativeTransfer(String callId, String otherCallId, in consultativeTransfer() argument