Home
last modified time | relevance | path

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

/packages/services/Telecomm/src/com/android/server/telecom/
DInCallAdapter.java398 public void sendCallEvent(String callId, String event, Bundle extras) { in sendCallEvent() method in InCallAdapter
406 call.sendCallEvent(event, extras); in sendCallEvent()
DConnectionServiceWrapper.java989 void sendCallEvent(Call call, String event, Bundle extras) { in sendCallEvent() method in ConnectionServiceWrapper
994 mServiceInterface.sendCallEvent(callId, event, extras); in sendCallEvent()
DCall.java1565 public void sendCallEvent(String event, Bundle extras) { in sendCallEvent() method in Call
1566 mConnectionService.sendCallEvent(this, event, extras); in sendCallEvent()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DBasicCallTests.java659 mInCallServiceFixtureX.mInCallAdapter.sendCallEvent(ids.mCallId, TEST_EVENT, null); in testSendCallEventNull()
661 .sendCallEvent(ids.mCallId, TEST_EVENT, null); in testSendCallEventNull()
679 mInCallServiceFixtureX.mInCallAdapter.sendCallEvent(ids.mCallId, TEST_EVENT, in testSendCallEventNonNull()
682 .sendCallEvent(eq(ids.mCallId), eq(TEST_EVENT), in testSendCallEventNonNull()
DConnectionServiceFixture.java271 public void sendCallEvent(String callId, String event, Bundle extras) throws RemoteException in sendCallEvent() method in ConnectionServiceFixture.FakeConnectionService