HomeSort by relevance Sort by last modified time
    Searched defs:telecom (Results 1 - 25 of 70) sorted by null

1 2 3

  /cts/tests/tests/telecom/src/android/telecom/cts/
MockMissedCallNotificationReceiver.java 18 package android.telecom.cts;
NewOutgoingCallBroadcastReceiver.java 1 package android.telecom.cts;
MockPhoneAccountChangedReceiver.java 17 package android.telecom.cts;
22 import android.telecom.PhoneAccountHandle;
23 import android.telecom.TelecomManager;
26 * Receives {@link android.telecom.TelecomManager#ACTION_PHONE_ACCOUNT_REGISTERED} and
27 * {@link android.telecom.TelecomManager#ACTION_PHONE_ACCOUNT_UNREGISTERED} intents.
NumberDialingTest.java 17 package android.telecom.cts;
19 import static android.telecom.cts.TestUtils.shouldTestTelecom;
22 import android.telecom.Connection;
23 import android.telecom.ConnectionRequest;
24 import android.telecom.PhoneAccount;
25 import android.telecom.PhoneAccountHandle;
PhoneAccountSuggestionTest.java 17 package android.telecom.cts;
20 import android.telecom.PhoneAccountSuggestion;
TelecomManagerTest.java 17 package android.telecom.cts;
20 import static android.telecom.cts.TestUtils.shouldTestTelecom;
22 import android.telecom.TelecomManager;
CallTest.java 17 package android.telecom.cts;
19 import static android.telecom.Call.Details.*;
21 import android.telecom.Call;
22 import android.telecom.CallAudioState;
CtsPhoneAccountSuggestionService.java 16 package android.telecom.cts;
23 import android.telecom.PhoneAccountSuggestion;
24 import android.telecom.PhoneAccountSuggestionService;
BasicInCallServiceTest.java 17 package android.telecom.cts;
19 import static android.telecom.cts.TestUtils.shouldTestTelecom;
21 import android.telecom.cts.MockInCallService.InCallServiceCallbacks;
26 import android.telecom.Call;
27 import android.telecom.InCallService;
60 * Tests that when sending a CALL intent via the Telecom -> Telephony stack, Telecom
CtsRemoteConnectionService.java 17 package android.telecom.cts;
22 import android.telecom.Conference;
23 import android.telecom.Connection;
24 import android.telecom.ConnectionRequest;
25 import android.telecom.ConnectionService;
26 import android.telecom.PhoneAccountHandle;
30 * This is the Remote ConnectionService for Telecom's CTS App. Since telecom requires that a
39 * Telecom framework to the test connection service.
40 * sTelecomConnectionService: Contains the connection service object registered to the Telecom
    [all...]
DefaultPhoneAccountTest.java 17 package android.telecom.cts;
21 import android.telecom.PhoneAccount;
22 import android.telecom.PhoneAccountHandle;
23 import android.telecom.TelecomManager;
43 * through the telecom shell command in order to change the user-selected default outgoing
215 // Wait till the adb commands have executed and account is enabled in Telecom database.
ExternalCallTest.java 17 package android.telecom.cts;
19 import android.telecom.Call;
20 import android.telecom.Connection;
21 import android.telecom.ConnectionRequest;
22 import android.telecom.PhoneAccount;
23 import android.telecom.PhoneAccountHandle;
25 import static android.telecom.cts.TestUtils.WAIT_FOR_STATE_CHANGE_TIMEOUT_MS;
28 * Tests which verify functionality related to {@link android.telecom.Connection}s and
29 * {@link android.telecom.Call}s with the
30 * {@link android.telecom.Connection#PROPERTY_IS_EXTERNAL_CALL} an
    [all...]
MissedCallTest.java 17 package android.telecom.cts;
20 import android.telecom.Call;
21 import android.telecom.Connection;
22 import android.telecom.DisconnectCause;
23 import android.telecom.TelecomManager;
24 import android.telecom.cts.MockMissedCallNotificationReceiver.IntentListener;
OutgoingCallTest.java 17 package android.telecom.cts;
22 import android.telecom.CallAudioState;
23 import android.telecom.TelecomManager;
27 * Verifies the behavior of Telecom during various outgoing call flows.
SimCallManagerTest.java 17 package android.telecom.cts;
19 import static android.telecom.cts.TestUtils.ACCOUNT_ID_1;
20 import static android.telecom.cts.TestUtils.ACCOUNT_LABEL;
21 import static android.telecom.cts.TestUtils.COMPONENT;
22 import static android.telecom.cts.TestUtils.PACKAGE;
29 import android.telecom.PhoneAccount;
30 import android.telecom.PhoneAccountHandle;
31 import android.telecom.TelecomManager;
VideoProfileTest.java 17 package android.telecom.cts;
19 import android.telecom.VideoProfile;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/telecom/
EnablePhoneAccountTestActivity.java 17 package com.android.cts.verifier.telecom;
20 import android.telecom.PhoneAccount;
29 * Tests that a new {@link android.telecom.ConnectionService} be added and its associated
30 * {@link android.telecom.PhoneAccount} enabled using the calling accounts settings screen.
IncomingCallTestActivity.java 17 package com.android.cts.verifier.telecom;
23 import android.telecom.Connection;
24 import android.telecom.PhoneAccount;
25 import android.telecom.PhoneAccountHandle;
26 import android.telecom.TelecomManager;
OutgoingCallTestActivity.java 17 package com.android.cts.verifier.telecom;
22 import android.telecom.PhoneAccount;
23 import android.telecom.PhoneAccountHandle;
24 import android.telecom.TelecomManager;
SelfManagedIncomingCallTestActivity.java 17 package com.android.cts.verifier.telecom;
23 import android.telecom.Connection;
24 import android.telecom.PhoneAccount;
25 import android.telecom.TelecomManager;
35 * {@link android.telecom.ConnectionService} APIs. It ensures that Telecom will show an incoming
139 return new Throwable("Could not get telecom service.");
159 // Telecom knows about the connection and can answer.
  /cts/tests/tests/telecom/CallScreeningServiceTestApp/src/android/telecom/cts/screeningtestapp/
CtsCallScreeningService.java 17 package android.telecom.cts.screeningtestapp;
23 import android.telecom.Call;
24 import android.telecom.CallScreeningService;
CallScreeningServiceControl.java 17 package android.telecom.cts.screeningtestapp;
25 import android.telecom.CallScreeningService;
36 "android.telecom.cts.screeningtestapp.ACTION_CONTROL_CALL_SCREENING_SERVICE";
39 "android.telecom.cts.screeningtestapp/.CallScreeningServiceControl");
44 new android.telecom.cts.screeningtestapp.ICallScreeningControl.Stub() {
  /cts/tests/tests/telecom/ThirdPtyInCallServiceTestApp/src/android/telecom/cts/thirdptyincallservice/
CtsThirdPartyInCallServiceControl.java 17 package android.telecom.cts.thirdptyincallservice;
28 "android.telecom.cts.thirdptyincallservice.ACTION_THIRDPTY_CTRL";
  /cts/tests/tests/telecom2/src/android/telecom/cts/
TelecomManagerNoPermissionsTest.java 17 package android.telecom.cts;
20 import android.telecom.TelecomManager;
  /cts/tests/tests/telecom/CallRedirectionServiceTestApp/src/android/telecom/cts/redirectiontestapp/
CtsCallRedirectionService.java 17 package android.telecom.cts.redirectiontestapp;
24 import android.telecom.Call;
25 import android.telecom.CallRedirectionService;
26 import android.telecom.PhoneAccountHandle;

Completed in 259 milliseconds

1 2 3