Searched refs:otherCall (Results 1 – 7 of 7) sorted by relevance
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | InCallAdapter.java | 186 Call otherCall = mCallIdMapper.getCall(otherCallId); in consultativeTransfer() local 187 if (call != null && otherCall != null) { in consultativeTransfer() 188 mCallsManager.transferCall(call, otherCall); in consultativeTransfer() 443 Call otherCall = mCallIdMapper.getCall(otherCallId); in conference() local 444 if (call != null && otherCall != null) { in conference() 445 mCallsManager.conference(call, otherCall); in conference()
|
D | ConnectionServiceWrapper.java | 837 Call otherCall = mCallIdMapper.getCall(otherId); in setConferenceableConnections() local 838 if (otherCall != null && otherCall != call) { in setConferenceableConnections() 839 conferenceableCalls.add(otherCall); in setConferenceableConnections() 1645 void transfer(Call call, Call otherCall) { in transfer() argument 1647 final String otherCallId = mCallIdMapper.getCallId(otherCall); in transfer() 1729 void conference(final Call call, Call otherCall) { in conference() argument 1731 final String otherCallId = mCallIdMapper.getCallId(otherCall); in conference()
|
D | Call.java | 2428 public void transfer(Call otherCall) { in transfer() argument 2430 (otherCall != null && otherCall.getState() == CallState.ON_HOLD)) { in transfer() 2432 mConnectionService.transfer(this, otherCall); in transfer() 2437 Log.addEvent(this, LogUtils.Events.REQUEST_CONSULTATIVE_TRANSFER, otherCall); in transfer() 2635 void conferenceWith(Call otherCall) { in conferenceWith() argument 2639 Log.addEvent(this, LogUtils.Events.CONFERENCE_WITH, otherCall); in conferenceWith() 2640 mConnectionService.conference(this, otherCall); in conferenceWith()
|
D | ParcelableCallUtils.java | 199 for (Call otherCall : conferenceableCalls) { in toParcelableCall() 200 conferenceableCallIds.add(otherCall.getId()); in toParcelableCall()
|
D | BluetoothPhoneServiceImpl.java | 345 for (Call otherCall : mCallsManager.getCalls()) { 346 if (otherCall.getState() == CallState.CONNECTING) {
|
D | CallsManager.java | 2251 public void conference(Call call, Call otherCall) { 2252 call.conferenceWith(otherCall); 2481 public void transferCall(Call call, Call otherCall) { 2482 if (!mCalls.contains(call) || !mCalls.contains(otherCall)) { 2483 Log.i(this, "transferCall - Non-existent call %s or %s", call, otherCall); 2485 call.transfer(otherCall);
|
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/activecall/ |
D | InCallViewModel.java | 313 public int compare(Call call, Call otherCall) { in compare() argument 315 boolean otherCallHasParent = otherCall.getParent() != null; in compare() 323 int otherCarCallRank = CALL_STATE_RANK.indexOf(otherCall.getState()); in compare()
|