HomeSort by relevance Sort by last modified time
    Searched refs:inCallService (Results 1 - 7 of 7) sorted by null

  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
InCallServiceListener.java 19 import android.telecom.InCallService;
23 * {@code InCallService} object. Clarifies the expectations associated with the relevant method
29 * Called once at {@code InCallService} startup time with a valid instance. At
32 * @param inCallService The {@code InCallService} object.
34 void setInCallService(InCallService inCallService);
37 * Called once at {@code InCallService} shutdown time. At that time, any {@code Call}s
TelecomAdapter.java 24 import android.telecom.InCallService;
33 private InCallService mInCallService;
47 public void setInCallService(InCallService inCallService) {
48 mInCallService = inCallService;
  /cts/tests/tests/telecom/src/android/telecom/cts/
ExtendedInCallServiceTest.java 30 import android.telecom.InCallService;
58 final MockInCallService inCallService = mInCallCallbacks.getService();
59 inCallService.disconnectLastCall();
61 assertNumCalls(inCallService, 0);
72 final MockInCallService inCallService = mInCallCallbacks.getService();
74 final Call call = inCallService.getLastCall();
81 ((InCallService) inCallService).setMuted(true);
84 assertMuteState(inCallService, true);
86 inCallService.setMuted(false)
    [all...]
VideoCallTest.java 24 import android.telecom.InCallService;
68 final MockInCallService inCallService = mInCallCallbacks.getService();
69 final Call call = inCallService.getLastCall();
76 assertVideoCallbackRegistered(inCallService, call, true);
90 final MockInCallService inCallService = mInCallCallbacks.getService();
91 final Call call = inCallService.getLastCall();
94 assertVideoCallbackRegistered(inCallService, call, true);
108 final MockInCallService inCallService = mInCallCallbacks.getService();
109 final Call call = inCallService.getLastCall();
111 assertVideoCallbackRegistered(inCallService, call, true)
    [all...]
MissedCallTest.java 64 final MockInCallService inCallService = mInCallCallbacks.getService();
66 final Call call = inCallService.getLastCall();
BaseTelecomTestWithMockServices.java 36 import android.telecom.InCallService;
285 fail("No call added to InCallService.");
291 assertEquals("InCallService should contain 1 more call after adding a call.",
338 fail("No call added to InCallService.");
344 assertEquals("InCallService should contain 1 more call after adding a call.",
445 * we should have 5 available permits on the incallService lock.
455 assertEquals("InCallService should contain 1 more call after adding a conf call.",
466 * we should have 2 available permits on the incallService lock.
538 void assertNumCalls(final MockInCallService inCallService, final int numCalls) {
546 return inCallService.getCallCount()
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
InCallController.java 38 import android.telecom.InCallService;
185 Intent intent = new Intent(InCallService.SERVICE_INTERFACE);
234 // InCallService rejected our initialization step, or the calls went away
235 // in the time it took us to bind to the InCallService. In such cases, we go
265 // At this point we know that we need to be connected to the InCallService
514 * Extras changes can originate from a {@link ConnectionService} or an {@link InCallService}
535 * Extras changes can originate from a {@link ConnectionService} or an {@link InCallService}
658 IInCallService inCallService = entry.getValue();
664 inCallService.addCall(parcelableCall);
713 IInCallService inCallService = entry.getValue()
    [all...]

Completed in 898 milliseconds