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

  /cts/tests/tests/telecom/src/android/telecom/cts/
ExtendedInCallServiceTest.java 26 import android.telecom.InCallService;
54 final MockInCallService inCallService = mInCallCallbacks.getService();
55 inCallService.disconnectLastCall();
57 assertNumCalls(inCallService, 0);
68 final MockInCallService inCallService = mInCallCallbacks.getService();
70 final Call call = inCallService.getLastCall();
77 ((InCallService) inCallService).setMuted(true);
80 assertMuteState(inCallService, true);
82 inCallService.setMuted(false)
    [all...]
VideoCallTest.java 22 import android.telecom.InCallService;
66 final MockInCallService inCallService = mInCallCallbacks.getService();
67 final Call call = inCallService.getLastCall();
74 assertVideoCallbackRegistered(inCallService, call, true);
88 final MockInCallService inCallService = mInCallCallbacks.getService();
89 final Call call = inCallService.getLastCall();
92 assertVideoCallbackRegistered(inCallService, call, true);
106 final MockInCallService inCallService = mInCallCallbacks.getService();
107 final Call call = inCallService.getLastCall();
109 assertVideoCallbackRegistered(inCallService, call, true)
    [all...]
BaseTelecomTestWithMockServices.java 36 import android.telecom.InCallService;
250 fail("No call added to InCallService.");
256 assertEquals("InCallService should contain 1 more call after adding a call.",
301 fail("No call added to InCallService.");
307 assertEquals("InCallService should contain 1 more call after adding a call.",
394 * we should have 5 available permits on the incallService lock.
404 assertEquals("InCallService should contain 1 more call after adding a conf call.",
415 * we should have 2 available permits on the incallService lock.
487 void assertNumCalls(final MockInCallService inCallService, final int numCalls) {
495 return inCallService.getCallCount()
    [all...]
  /packages/apps/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 22 import android.telecom.InCallService;
33 private InCallService mInCallService;
47 public void setInCallService(InCallService inCallService) {
48 mInCallService = inCallService;
  /packages/services/Telecomm/src/com/android/server/telecom/
InCallController.java 39 import android.telecom.InCallService;
184 IInCallService inCallService = entry.getValue();
188 inCallService.addCall(parcelableCall);
242 for (IInCallService inCallService : mInCallServices.values()) {
244 inCallService.onCallAudioStateChanged(newCallAudioState);
255 for (IInCallService inCallService : mInCallServices.values()) {
257 inCallService.onCanAddCallChanged(canAddCall);
267 for (IInCallService inCallService : mInCallServices.values()) {
269 inCallService.setPostDialWait(mCallIdMapper.getCallId(call), remaining);
284 for (IInCallService inCallService : mInCallServices.values())
    [all...]

Completed in 624 milliseconds