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

/packages/services/Telecomm/src/com/android/server/telecom/
H A DInCallAdapter.java399 public void sendCallEvent(String callId, String event, Bundle extras) { method in class:InCallAdapter
407 call.sendCallEvent(event, extras);
409 Log.w(this, "sendCallEvent, unknown call id: %s", callId);
H A DConnectionServiceWrapper.java1269 void sendCallEvent(Call call, String event, Bundle extras) { method in class:ConnectionServiceWrapper
1271 if (callId != null && isServiceValid("sendCallEvent")) {
1273 logOutgoing("sendCallEvent %s %s", callId, event);
1274 mServiceInterface.sendCallEvent(callId, event, extras, Log.getExternalSession());
H A DCall.java1998 * See {@link Call#sendCallEvent(String, Bundle)}.
2003 public void sendCallEvent(String event, Bundle extras) { method in class:Call
2008 Log.w(this, "sendCallEvent: %s event received with null extras.",
2010 mConnectionService.sendCallEvent(this,
2017 Log.w(this, "sendCallEvent: %s event received with invalid handover acct.",
2019 mConnectionService.sendCallEvent(this,
2035 mConnectionService.sendCallEvent(this, event, extras);
2039 "sendCallEvent failed due to null CS callId=%s", getId());
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
H A DConnectionServiceFixture.java331 public void sendCallEvent(String callId, String event, Bundle extras, method in class:ConnectionServiceFixture.FakeConnectionService

Completed in 147 milliseconds