Home
last modified time | relevance | path

Searched refs:getChildCalls (Results 1 – 6 of 6) sorted by relevance

/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DBluetoothPhoneServiceTest.java323 when(parentCall.getChildCalls()).thenReturn(new LinkedList<Call>() {{ in testConferenceInProgressCDMA()
372 when(parentCall.getChildCalls()).thenReturn(new LinkedList<Call>() {{ in testListCurrentCallsCdmaHold()
414 when(parentCall.getChildCalls()).thenReturn(new LinkedList<Call>() {{ in testListCurrentCallsCdmaConference()
650 when(parentConfCall.getChildCalls()).thenReturn(new LinkedList<Call>() {{ in testCDMAConferenceQueryState()
787 when(parentCall.getChildCalls()).thenReturn(new LinkedList<Call>() {{ in testProcessChldHoldActiveSwapConference()
837 when(parentCall.getChildCalls()).thenReturn(new LinkedList<Call>() {{ in testOnCallAddedCdmaActiveHold()
1029 when(parentCall.getChildCalls()).thenReturn(calls); in testOnIsConferencedChanged()
/packages/services/Telecomm/src/com/android/server/telecom/
DBluetoothPhoneServiceImpl.java387 if (call.getChildCalls().size() == 1) {
731 int numChildrenOfActiveCall = activeCall == null ? 0 : activeCall.getChildCalls().size(); in updateHeadsetWithCallState()
752 for (Call childCall : activeCall.getChildCalls()) { in updateHeadsetWithCallState()
DCall.java827 getChildCalls().size(), in toString()
1846 public List<Call> getChildCalls() { in getChildCalls() method in Call
2891 if (parentCall != null && !parentCall.getChildCalls().contains(this)) { in setChildOf()
DParcelableCallUtils.java184 List<Call> childCalls = call.getChildCalls(); in toParcelableCall()
DCallsManager.java3984 !liveCall.getChildCalls().isEmpty()) {
4083 !liveCall.getChildCalls().isEmpty()) {
4128 for (Call childCall : parentCall.getChildCalls()) {
DInCallController.java1817 if (call.getChildCalls().size() > 0) { in orderCallsWithChildrenFirst()