Home
last modified time | relevance | path

Searched refs:otherCall (Results 1 – 9 of 9) sorted by relevance

/aosp12/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/activecall/
H A DInCallViewModel.java188 Call otherCall = mSecondaryCallLiveData.getValue(); in mergeConference() local
190 if (call == null || otherCall == null) { in mergeConference()
193 call.conference(otherCall); in mergeConference()
393 public int compare(Call call, Call otherCall) { in compare() argument
395 boolean otherCallHasParent = otherCall.getParent() != null; in compare()
403 int otherCarCallRank = CALL_STATE_RANK.indexOf(otherCall.getState()); in compare()
/aosp12/packages/services/Telecomm/src/com/android/server/telecom/
H A DInCallAdapter.java189 Call otherCall = mCallIdMapper.getCall(otherCallId); in consultativeTransfer() local
190 if (call != null && otherCall != null) { in consultativeTransfer()
191 mCallsManager.transferCall(call, otherCall); in consultativeTransfer()
448 Call otherCall = mCallIdMapper.getCall(otherCallId); in conference() local
449 if (call != null && otherCall != null) { in conference()
450 mCallsManager.conference(call, otherCall); in conference()
H A DConnectionServiceWrapper.java848 Call otherCall = mCallIdMapper.getCall(otherId); in setConferenceableConnections() local
849 if (otherCall != null && otherCall != call) { in setConferenceableConnections()
850 conferenceableCalls.add(otherCall); in setConferenceableConnections()
1743 void transfer(Call call, Call otherCall) { in transfer() argument
1745 final String otherCallId = mCallIdMapper.getCallId(otherCall); in transfer()
1830 void conference(final Call call, Call otherCall) { in conference() argument
1832 final String otherCallId = mCallIdMapper.getCallId(otherCall); in conference()
H A DCall.java2650 public void transfer(Call otherCall) { in transfer() argument
2652 (otherCall != null && otherCall.getState() == CallState.ON_HOLD)) { in transfer()
2654 mConnectionService.transfer(this, otherCall); in transfer()
2659 Log.addEvent(this, LogUtils.Events.REQUEST_CONSULTATIVE_TRANSFER, otherCall); in transfer()
2881 void conferenceWith(Call otherCall) { in conferenceWith() argument
2885 Log.addEvent(this, LogUtils.Events.CONFERENCE_WITH, otherCall); in conferenceWith()
2886 mConnectionService.conference(this, otherCall); in conferenceWith()
H A DParcelableCallUtils.java201 for (Call otherCall : conferenceableCalls) { in toParcelableCall()
202 conferenceableCallIds.add(otherCall.getId()); in toParcelableCall()
H A DCallsManager.java2392 public void conference(Call call, Call otherCall) {
2393 call.conferenceWith(otherCall);
2622 public void transferCall(Call call, Call otherCall) {
2623 if (!mCalls.contains(call) || !mCalls.contains(otherCall)) {
2624 Log.i(this, "transferCall - Non-existent call %s or %s", call, otherCall);
2626 call.transfer(otherCall);
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DHeadsUpManager.java438 boolean otherCall = isCriticalCallNotif(headsUpEntry.mEntry); in compareTo()
440 if (selfCall && !otherCall) { in compareTo()
442 } else if (!selfCall && otherCall) { in compareTo()
/aosp12/packages/apps/Car/Dialer/framework/fake/src/com/android/car/dialer/framework/
H A DMockCallManager.java429 public int compare(Call call, Call otherCall) { in compare() argument
431 boolean otherCallHasParent = otherCall.getParent() != null; in compare()
439 int otherCarCallRank = CALL_STATE_RANK.indexOf(otherCall.getState()); in compare()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/telephony/
H A DBluetoothInCallService.java204 for (BluetoothCall otherCall : mCallInfo.getBluetoothCalls()) { in onStateChanged()
205 if (otherCall.getState() == Call.STATE_CONNECTING) { in onStateChanged()