Searched refs:otherCallId (Results 1 – 3 of 3) sorted by relevance
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | InCallAdapter.java | 180 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()
|
D | ConnectionServiceWrapper.java | 1706 final String otherCallId = mCallIdMapper.getCallId(otherCall); in transfer() local 1707 if (callId != null && otherCallId != null && isServiceValid("consultativeTransfer")) { in transfer() 1710 mServiceInterface.consultativeTransfer(callId, otherCallId, in transfer() 1793 final String otherCallId = mCallIdMapper.getCallId(otherCall); in conference() local 1794 if (callId != null && otherCallId != null && isServiceValid("conference")) { in conference() 1796 logOutgoing("conference %s %s", callId, otherCallId); in conference() 1797 mServiceInterface.conference(callId, otherCallId, in conference()
|
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | ConnectionServiceFixture.java | 309 public void consultativeTransfer(String callId, String otherCallId, in consultativeTransfer() argument
|