Searched refs:otherCallId (Results 1 – 3 of 3) sorted by relevance
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | InCallAdapter.java | 183 public void consultativeTransfer(String callId, String otherCallId) { in consultativeTransfer() argument 190 Log.i(this, "consultativeTransfer - %s, %s", callId, otherCallId); in consultativeTransfer() 192 Call otherCall = mCallIdMapper.getCall(otherCallId); in consultativeTransfer() 197 callId, otherCallId); in consultativeTransfer() 467 public void conference(String callId, String otherCallId) { in conference() argument 474 Call otherCall = mCallIdMapper.getCall(otherCallId); in conference() 478 Log.w(this, "conference, unknown call id: %s or %s", callId, otherCallId); in conference()
|
D | ConnectionServiceWrapper.java | 2222 final String otherCallId = mCallIdMapper.getCallId(otherCall); in transfer() local 2223 if (callId != null && otherCallId != null && isServiceValid("consultativeTransfer")) { in transfer() 2226 mServiceInterface.consultativeTransfer(callId, otherCallId, in transfer() 2310 final String otherCallId = mCallIdMapper.getCallId(otherCall); in conference() local 2311 if (callId != null && otherCallId != null && isServiceValid("conference")) { in conference() 2313 logOutgoing("conference %s %s", callId, otherCallId); in conference() 2314 mServiceInterface.conference(callId, otherCallId, in conference()
|
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | ConnectionServiceFixture.java | 329 public void consultativeTransfer(String callId, String otherCallId, in consultativeTransfer() argument
|