Searched refs:sendCallEvent (Results 1 - 5 of 5) 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.java1261 void sendCallEvent(Call call, String event, Bundle extras) { method in class:ConnectionServiceWrapper
1263 if (callId != null && isServiceValid("sendCallEvent")) {
1265 logOutgoing("sendCallEvent %s %s", callId, event);
1266 mServiceInterface.sendCallEvent(callId, event, extras, Log.getExternalSession());
H A DCall.java1859 * See {@link Call#sendCallEvent(String, Bundle)}.
1864 public void sendCallEvent(String event, Bundle extras) { method in class:Call
1866 mConnectionService.sendCallEvent(this, event, extras);
1869 "sendCallEvent failed due to null CS callId=%s", getId());
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
H A DBasicCallTests.java673 * Tests the {@link Call#sendCallEvent(String, Bundle)} API.
683 mInCallServiceFixtureX.mInCallAdapter.sendCallEvent(ids.mCallId, TEST_EVENT, null);
685 .sendCallEvent(eq(ids.mConnectionId), eq(TEST_EVENT), isNull(Bundle.class), any());
689 * Tests the {@link Call#sendCallEvent(String, Bundle)} API.
703 mInCallServiceFixtureX.mInCallAdapter.sendCallEvent(ids.mCallId, TEST_EVENT,
706 .sendCallEvent(eq(ids.mConnectionId), eq(TEST_EVENT),
H A DConnectionServiceFixture.java332 public void sendCallEvent(String callId, String event, Bundle extras, method in class:ConnectionServiceFixture.FakeConnectionService

Completed in 129 milliseconds