Home
last modified time | relevance | path

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

/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DBasicCallTests.java769 mInCallServiceFixtureX.mInCallAdapter.sendCallEvent(ids.mCallId, TEST_EVENT, 26, null); in testSendCallEventNull()
771 .sendCallEvent(eq(ids.mConnectionId), eq(TEST_EVENT), isNull(Bundle.class), any()); in testSendCallEventNull()
790 mInCallServiceFixtureX.mInCallAdapter.sendCallEvent(ids.mCallId, TEST_EVENT, 26, in testSendCallEventNonNull()
793 .sendCallEvent(eq(ids.mConnectionId), eq(TEST_EVENT), in testSendCallEventNonNull()
DConnectionServiceFixture.java381 public void sendCallEvent(String callId, String event, Bundle extras, in sendCallEvent() method in ConnectionServiceFixture.FakeConnectionService
/packages/services/Telecomm/src/com/android/server/telecom/
DCall.java2753 public void sendCallEvent(String event, Bundle extras) { in sendCallEvent() method in Call
2754 sendCallEvent(event, 0/*For Event != EVENT_REQUEST_HANDOVER*/, extras); in sendCallEvent()
2766 public void sendCallEvent(String event, int targetSdkVer, Bundle extras) { in sendCallEvent() method in Call
2790 mConnectionService.sendCallEvent(this, in sendCallEvent()
2799 mConnectionService.sendCallEvent(this, in sendCallEvent()
2815 mConnectionService.sendCallEvent(this, event, extras); in sendCallEvent()
DInCallAdapter.java570 public void sendCallEvent(String callId, String event, int targetSdkVer, Bundle extras) { in sendCallEvent() method in InCallAdapter
578 call.sendCallEvent(event, targetSdkVer, extras); in sendCallEvent()
DCallsManager.java3581 call.getHandoverDestinationCall().sendCallEvent(
3604 handoverTo.sendCallEvent(android.telecom.Call.EVENT_HANDOVER_COMPLETE, null);
3636 handoverTo.sendCallEvent(android.telecom.Call.EVENT_HANDOVER_FAILED, null);
4744 handoverFromCall.sendCallEvent(android.telecom.Call.EVENT_HANDOVER_FAILED, null);
DConnectionServiceWrapper.java1798 void sendCallEvent(Call call, String event, Bundle extras) { in sendCallEvent() method in ConnectionServiceWrapper
1803 mServiceInterface.sendCallEvent(callId, event, extras, Log.getExternalSession()); in sendCallEvent()