Searched defs:sendCallEvent (Results 1 - 4 of 4) sorted by relevance

/packages/services/Telecomm/src/com/android/server/telecom/
H A DInCallAdapter.java429 public void sendCallEvent(String callId, String event, int targetSdkVer, Bundle extras) { method in class:InCallAdapter
437 call.sendCallEvent(event, targetSdkVer, extras);
439 Log.w(this, "sendCallEvent, unknown call id: %s", callId);
H A DConnectionServiceWrapper.java1488 void sendCallEvent(Call call, String event, Bundle extras) { method in class:ConnectionServiceWrapper
1490 if (callId != null && isServiceValid("sendCallEvent")) {
1492 logOutgoing("sendCallEvent %s %s", callId, event);
1493 mServiceInterface.sendCallEvent(callId, event, extras, Log.getExternalSession());
H A DCall.java2218 public void sendCallEvent(String event, Bundle extras) { method in class:Call
2219 sendCallEvent(event, 0/*For Event != EVENT_REQUEST_HANDOVER*/, extras);
2225 * See {@link Call#sendCallEvent(String, Bundle)}.
2231 public void sendCallEvent(String event, int targetSdkVer, Bundle extras) { method in class:Call
2235 Log.e(this, new Exception(), "sendCallEvent failed. Use public api handoverTo" +
2242 Log.w(this, "sendCallEvent: %s event received with null extras.",
2244 mConnectionService.sendCallEvent(this,
2251 Log.w(this, "sendCallEvent: %s event received with invalid handover acct.",
2253 mConnectionService.sendCallEvent(this,
2269 mConnectionService.sendCallEvent(thi
[all...]
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
H A DConnectionServiceFixture.java340 public void sendCallEvent(String callId, String event, Bundle extras, method in class:ConnectionServiceFixture.FakeConnectionService

Completed in 104 milliseconds