Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/src/com/android/bluetooth/telephony/
DBluetoothCall.java133 public void sendCallEvent(String event, Bundle extras) { in sendCallEvent() method in BluetoothCall
134 mCall.sendCallEvent(event, extras); in sendCallEvent()
DBluetoothInCallService.java498 call.sendCallEvent( in sendBluetoothCallQualityReport()
/packages/apps/Car/Dialer/src/com/android/car/dialer/telecom/
DUiCallManager.java198 call.sendCallEvent(EVENT_SCO_CONNECT, null); in setAudioRoute()
201 call.sendCallEvent(EVENT_SCO_DISCONNECT, null); in setAudioRoute()
/packages/services/Telecomm/src/com/android/server/telecom/
DCall.java2998 public void sendCallEvent(String event, Bundle extras) { in sendCallEvent() method in Call
2999 sendCallEvent(event, 0/*For Event != EVENT_REQUEST_HANDOVER*/, extras); in sendCallEvent()
3011 public void sendCallEvent(String event, int targetSdkVer, Bundle extras) { in sendCallEvent() method in Call
3035 mConnectionService.sendCallEvent(this, in sendCallEvent()
3044 mConnectionService.sendCallEvent(this, in sendCallEvent()
3068 mConnectionService.sendCallEvent(this, event, extras); in sendCallEvent()
4052 sendCallEvent(Connection.EVENT_DEVICE_TO_DEVICE_MESSAGE, extras); in sendDeviceToDeviceMessage()
DInCallAdapter.java575 public void sendCallEvent(String callId, String event, int targetSdkVer, Bundle extras) { in sendCallEvent() method in InCallAdapter
583 call.sendCallEvent(event, targetSdkVer, extras); in sendCallEvent()
DCallsManager.java3844 call.getHandoverDestinationCall().sendCallEvent(
3867 handoverTo.sendCallEvent(android.telecom.Call.EVENT_HANDOVER_COMPLETE, null);
3899 handoverTo.sendCallEvent(android.telecom.Call.EVENT_HANDOVER_FAILED, null);
5020 handoverFromCall.sendCallEvent(android.telecom.Call.EVENT_HANDOVER_FAILED, null);
DConnectionServiceWrapper.java1865 void sendCallEvent(Call call, String event, Bundle extras) { in sendCallEvent() method in ConnectionServiceWrapper
1870 mServiceInterface.sendCallEvent(callId, event, extras, in sendCallEvent()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DBasicCallTests.java790 mInCallServiceFixtureX.mInCallAdapter.sendCallEvent(ids.mCallId, TEST_EVENT, 26, null); in testSendCallEventNull()
792 .sendCallEvent(eq(ids.mConnectionId), eq(TEST_EVENT), isNull(Bundle.class), any()); in testSendCallEventNull()
811 mInCallServiceFixtureX.mInCallAdapter.sendCallEvent(ids.mCallId, TEST_EVENT, 26, in testSendCallEventNonNull()
814 .sendCallEvent(eq(ids.mConnectionId), eq(TEST_EVENT), in testSendCallEventNonNull()
DConnectionServiceFixture.java391 public void sendCallEvent(String callId, String event, Bundle extras, in sendCallEvent() method in ConnectionServiceFixture.FakeConnectionService