Home
last modified time | relevance | path

Searched defs:call (Results 1 – 24 of 24) sorted by relevance

/cts/tests/tests/telecom/src/android/telecom/cts/
DMockInCallService.java49 public void onCallAdded(Call call, int numCalls) {}; in onCallAdded()
50 public void onCallRemoved(Call call, int numCalls) {}; in onCallRemoved()
51 public void onCallStateChanged(Call call, int state) {}; in onCallStateChanged()
52 public void onParentChanged(Call call, Call parent) {}; in onParentChanged()
53 public void onChildrenChanged(Call call, List<Call> children) {}; in onChildrenChanged()
54 public void onConferenceableCallsChanged(Call call, List<Call> conferenceableCalls) {}; in onConferenceableCallsChanged()
55 public void onCallDestroyed(Call call) {}; in onCallDestroyed()
56 public void onDetailsChanged(Call call, Call.Details details) {}; in onDetailsChanged()
60 public void onPostDialWait(Call call, String remainingPostDialSequence) {} in onPostDialWait()
61 public void onCannedTextResponsesLoaded(Call call, List<String> cannedTextResponses) {} in onCannedTextResponsesLoaded()
[all …]
DRttOperationsTest.java53 final Call call = inCallService.getLastCall(); in testOutgoingRttCall() local
66 final Call call = inCallService.getLastCall(); in testIncomingRttCall() local
79 final Call call = inCallService.getLastCall(); in testLocalRttUpgradeAccepted() local
101 final Call call = inCallService.getLastCall(); in testLocalRttUpgradeRejected() local
125 final Call call = inCallService.getLastCall(); in testAcceptRemoteRttUpgrade() local
148 final Call call = inCallService.getLastCall(); in testRejectRemoteRttRequest() local
172 final Call call = inCallService.getLastCall(); in testLocalRttTermination() local
191 final Call call = inCallService.getLastCall(); in testRemoteRttTermination() local
203 private void verifyRttDisabled(Call call) { in verifyRttDisabled()
209 private void verifyRttEnabled(Call call, MockConnection connection) { in verifyRttEnabled()
DExtendedInCallServiceTest.java75 final Call call = inCallService.getLastCall(); in testMuteAndUnmutePhone() local
102 final Call call = inCallService.getLastCall(); in testSwitchAudioRoutes() local
156 final Call call = inCallService.getLastCall(); in testPlayAndStopDtmfTones() local
189 final Call call = inCallService.getLastCall(); in testHoldAndUnholdCall() local
216 final Call call = inCallService.getLastCall(); in testAnswerIncomingCallAudioOnly() local
235 final Call call = inCallService.getLastCall(); in testAcceptRingingCall() local
363 final Call call = inCallService.getLastCall(); in testAnswerIncomingCallAsVideo_SendsCorrectVideoState() local
386 final Call call = inCallService.getLastCall(); in testRejectIncomingCall() local
408 final Call call = inCallService.getLastCall(); in testRejectIncomingCallWithMessage() local
430 final Call call = inCallService.getLastCall(); in testCanAddCall_CannotAddForExistingDialingCall() local
[all …]
DVideoCallTest.java69 final Call call = inCallService.getLastCall(); in testMakeTwoWayVideoCall() local
91 final Call call = inCallService.getLastCall(); in testMakeOneWayVideoCall() local
109 final Call call = inCallService.getLastCall(); in testUpgradeToVideo() local
133 final Call call = inCallService.getLastCall(); in testReceiveSessionModifyRequest() local
162 final Call call = inCallService.getLastCall(); in testSendSessionModifyResponse() local
187 final Call call = inCallService.getLastCall(); in testReceiveSessionModifyResponse() local
243 final Call call = inCallService.getLastCall(); in testVideoCallDelayProvider() local
275 final Call call = inCallService.getLastCall(); in testChangeCamera() local
300 final Call call = inCallService.getLastCall(); in testRequestCameraCapabilities() local
328 final Call call = inCallService.getLastCall(); in testRequestDataUsage() local
[all …]
DWiredHeadsetTest.java46 final Call call = mInCallCallbacks.getService().getLastCall(); in testIncomingCallShortPress_acceptsCall() local
63 final Call call = mInCallCallbacks.getService().getLastCall(); in testIncomingCallLongPress_rejectsCall() local
102 final Call call = mInCallCallbacks.getService().getLastCall(); in testInCallShortPress_hangupCall() local
DConnectionServiceTest.java60 final Call call = mInCallCallbacks.getService().getLastCall(); in testAddExistingConnection() local
84 final Call call = mInCallCallbacks.getService().getLastCall(); in testAddExistingConnection_invalidPhoneAccountPackageName() local
106 final Call call = mInCallCallbacks.getService().getLastCall(); in testAddExistingConnection_invalidPhoneAccountAccountId() local
DConferenceTest.java440 private void assertCallCapability(final Call call, final int capability) { in assertCallCapability()
458 private void assertCallConnectTime(final Call call, final int connectTime) { in assertCallConnectTime()
476 private void assertCallExtras(final Call call, final String key, final String value) { in assertCallExtras()
495 private void assertCallStatusHints(final Call call, final StatusHints hints) { in assertCallStatusHints()
513 private void assertCallChildrenContains(final Call call, final Call childrenCall, in assertCallChildrenContains()
533 private void assertVideoState(final Call call, final int videoState) { in assertVideoState()
DMissedCallTest.java66 final Call call = inCallService.getLastCall(); in testMissedCall_NotifyDialer() local
DRemoteConnectionTest.java61 final Call call = mInCallCallbacks.getService().getLastCall(); in testRemoteConnectionOutgoingCall() local
98 final Call call = mInCallCallbacks.getService().getLastCall(); in testRemoteConnectionIncomingCallAccept() local
119 final Call call = mInCallCallbacks.getService().getLastCall(); in testRemoteConnectionIncomingCallReject() local
140 final Call call = mInCallCallbacks.getService().getLastCall(); in testRemoteConnectionDTMFTone() local
486 final Call call = mInCallCallbacks.getService().getLastCall(); in testRemoteConnectionCallbacks_ConferenceableConnections() local
1267 final Call call = mInCallCallbacks.getService().getLastCall(); in setupRemoteConnectionCallbacksTest() local
1280 final Call call = mInCallCallbacks.getService().getLastCall(); in setupRemoteConnectionVideoCallbacksTest() local
1308 final Call call = mInCallCallbacks.getService().getLastCall(); in setupRemoteConnectionVideoTest() local
DBaseTelecomTestWithMockServices.java730 void assertCallState(final Call call, final int state) { in assertCallState()
748 void assertCallConferenceableList(final Call call, final List<Call> conferenceableList) { in assertCallConferenceableList()
800 void assertCallDisplayName(final Call call, final String name) { in assertCallDisplayName()
997 public void assertCallProperties(final Call call, final int properties) { in assertCallProperties()
1021 public void assertCallCapabilities(final Call call, final int capabilities) { in assertCallCapabilities()
DMockVideoCallCallback.java39 public MockVideoCallCallback(Call call) { in MockVideoCallCallback()
DCallDetailsTest.java649 private void assertCallExtras(final Call call, final String expectedKey) { in assertCallExtras()
/cts/tests/tests/telecom3/src/android/telecom/cts/
DSelfManagedAwareInCallService.java44 public void onStateChanged(Call call, int state) { in onStateChanged()
50 public void onDetailsChanged(Call call, Call.Details details) { in onDetailsChanged()
55 public void onCallDestroyed(Call call) { in onCallDestroyed()
105 public void onCallAdded(Call call) { in onCallAdded()
117 public void onCallRemoved(Call call) { in onCallRemoved()
147 public CallCallback getCallCallback(Call call) { in getCallCallback()
DSelfManagedAwareInCallServiceTest.java125 Call call = SelfManagedAwareInCallService.getInCallService().waitForCallAdded(); in testInCallServiceOutgoing() local
149 Call call = SelfManagedAwareInCallService.getInCallService().waitForCallAdded(); in testInCallServiceIncoming() local
172 Call call = SelfManagedAwareInCallService.getInCallService().waitForCallAdded(); in testSelfManagedSignalling() local
/cts/hostsidetests/sustainedperf/shadertoy_android/jni/
Dutils.h37 #define GL_CALL(call) \ argument
45 #define GL_CALL(call) \ argument
/cts/apps/CtsVerifier/src/com/android/cts/verifier/dialer/
DDialerCallTestService.java54 public void onCallAdded(Call call) { in onCallAdded()
/cts/hostsidetests/sustainedperf/dhrystone/
DDrystone-2.1.sh646 X * function call 6 function
/cts/hostsidetests/appsecurity/test-apps/StorageApp/src/com/android/cts/storageapp/
DUtilsProvider.java27 public Bundle call(String method, String arg, Bundle extras) { in call() method in UtilsProvider
/cts/tests/JobScheduler/jobperm/src/android/jobscheduler/cts/jobperm/
DJobPermProvider.java37 public Bundle call(@NonNull String method, @Nullable String arg, @Nullable Bundle extras) { in call() method in JobPermProvider
/cts/hostsidetests/devicepolicy/app/CorpOwnedManagedProfile/src/com/android/cts/comp/
DBindDeviceAdminServiceGoodSetupTest.java224 T call(ICrossUserService service) throws RemoteException; in call() method
/cts/hostsidetests/theme/src/android/theme/cts/
DComparisonTask.java56 public Pair<String, File> call() { in call() method in ComparisonTask
/cts/tests/tests/accounts/common/src/android/accounts/cts/common/
DAuthenticatorContentProvider.java62 public Bundle call(String method, String arg, Bundle extras) { in call() method in AuthenticatorContentProvider
/cts/hostsidetests/devicepolicy/app/ContactDirectoryProvider/src/com/android/cts/contactdirectoryprovider/
DDirectoryProvider.java207 public Bundle call(String method, String arg, Bundle extras) { in call() method in DirectoryProvider
/cts/tests/tests/print/src/android/print/cts/
DBasePrintTest.java936 public void call() { in call() method in CallCounter