Home
last modified time | relevance | path

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

/packages/services/Telecomm/src/com/android/server/telecom/
DCall.java2320 public void sendCallEvent(String event, Bundle extras) { in sendCallEvent() method in Call
2321 sendCallEvent(event, 0/*For Event != EVENT_REQUEST_HANDOVER*/, extras); in sendCallEvent()
2333 public void sendCallEvent(String event, int targetSdkVer, Bundle extras) { in sendCallEvent() method in Call
2356 mConnectionService.sendCallEvent(this, in sendCallEvent()
2365 mConnectionService.sendCallEvent(this, in sendCallEvent()
2381 mConnectionService.sendCallEvent(this, event, extras); in sendCallEvent()
DInCallAdapter.java433 public void sendCallEvent(String callId, String event, int targetSdkVer, Bundle extras) { in sendCallEvent() method in InCallAdapter
441 call.sendCallEvent(event, targetSdkVer, extras); in sendCallEvent()
DCallsManager.java3060 call.getHandoverDestinationCall().sendCallEvent(
3083 handoverTo.sendCallEvent(android.telecom.Call.EVENT_HANDOVER_COMPLETE, null);
3115 handoverTo.sendCallEvent(android.telecom.Call.EVENT_HANDOVER_FAILED, null);
4048 handoverFromCall.sendCallEvent(android.telecom.Call.EVENT_HANDOVER_FAILED, null);
DConnectionServiceWrapper.java1539 void sendCallEvent(Call call, String event, Bundle extras) { in sendCallEvent() method in ConnectionServiceWrapper
1544 mServiceInterface.sendCallEvent(callId, event, extras, Log.getExternalSession()); in sendCallEvent()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DBasicCallTests.java755 mInCallServiceFixtureX.mInCallAdapter.sendCallEvent(ids.mCallId, TEST_EVENT, 26, null); in testSendCallEventNull()
757 .sendCallEvent(eq(ids.mConnectionId), eq(TEST_EVENT), isNull(Bundle.class), any()); in testSendCallEventNull()
776 mInCallServiceFixtureX.mInCallAdapter.sendCallEvent(ids.mCallId, TEST_EVENT, 26, in testSendCallEventNonNull()
779 .sendCallEvent(eq(ids.mConnectionId), eq(TEST_EVENT), in testSendCallEventNonNull()
DConnectionServiceFixture.java342 public void sendCallEvent(String callId, String event, Bundle extras, in sendCallEvent() method in ConnectionServiceFixture.FakeConnectionService