/frameworks/base/telecomm/java/android/telecom/ |
InCallAdapter.java | 275 public void sendCallEvent(String callId, String event, Bundle extras) { 277 mAdapter.sendCallEvent(callId, event, extras);
|
Call.java | [all...] |
ConnectionService.java | 258 public void sendCallEvent(String callId, String event, Bundle extras) { 420 sendCallEvent(callId, event, extras); [all...] |
/packages/services/Telecomm/src/com/android/server/telecom/ |
InCallAdapter.java | 398 public void sendCallEvent(String callId, String event, Bundle extras) { 406 call.sendCallEvent(event, extras); 408 Log.w(this, "sendCallEvent, unknown call id: %s", callId);
|
ConnectionServiceWrapper.java | [all...] |
Call.java | [all...] |
/cts/tests/tests/telecom/src/android/telecom/cts/ |
CallDetailsTest.java | 602 * Tests that {@link Call} events are propagated from {@link Call#sendCallEvent(String, Bundle)} 613 mCall.sendCallEvent(TEST_EVENT, testBundle);
|
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
BasicCallTests.java | 634 * Tests the {@link Call#sendCallEvent(String, Bundle)} API. 644 mInCallServiceFixtureX.mInCallAdapter.sendCallEvent(ids.mCallId, TEST_EVENT, null); 646 .sendCallEvent(ids.mConnectionId, TEST_EVENT, null); 650 * Tests the {@link Call#sendCallEvent(String, Bundle)} API. 664 mInCallServiceFixtureX.mInCallAdapter.sendCallEvent(ids.mCallId, TEST_EVENT, 667 .sendCallEvent(eq(ids.mConnectionId), eq(TEST_EVENT), [all...] |
ConnectionServiceFixture.java | 299 public void sendCallEvent(String callId, String event, Bundle extras) throws RemoteException
|