Home
last modified time | relevance | path

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

/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DIncomingCallNotifierTest.java82 when(mRingingCall.getHandoverState()).thenReturn(HandoverState.HANDOVER_NONE); in setUp()
158 when(mRingingCall.getHandoverState()).thenReturn(HandoverState.HANDOVER_FROM_STARTED); in testDontShowDuringHandover1()
177 when(mRingingCall.getHandoverState()).thenReturn(HandoverState.HANDOVER_COMPLETE); in testDontShowDuringHandover2()
DCallLogManagerTest.java753 when(fakeMissedCall.getHandoverState()).thenReturn(HandoverState.HANDOVER_NONE); in testLogMissedSelfManaged()
/packages/services/Telecomm/src/com/android/server/telecom/
DCallLogManager.java209 && (call.getHandoverState() == HandoverState.HANDOVER_NONE in shouldLogDisconnectedCall()
210 || call.getHandoverState() == HandoverState.HANDOVER_COMPLETE); in shouldLogDisconnectedCall()
DCallsManager.java3559 if (call.getHandoverState() == HandoverState.HANDOVER_TO_STARTED) {
3575 int handoverState = call.getHandoverState();
DCall.java1570 public int getHandoverState() { in getHandoverState() method in Call
/packages/services/Telecomm/src/com/android/server/telecom/ui/
DIncomingCallNotifier.java143 call.getHandoverState() == HandoverState.HANDOVER_NONE) in updateIncomingCall()