Home
last modified time | relevance | path

Searched refs:callId (Results 1 – 25 of 26) sorted by relevance

12

/cts/tests/tests/telephony/current/mockmodem/src/android/telephony/mockmodem/
DMockVoiceService.java138 MockCallStateTimerTask(Timer timer, int callId, int event) { in MockCallStateTimerTask() argument
140 mCallId = callId; in MockCallStateTimerTask()
221 public void setCallId(int callId) { in setCallId() argument
222 mIndex = callId; in setCallId()
392 public void addCallStateTimerTask(int callId, int event, long duration) { in addCallStateTimerTask() argument
394 MockCallStateTimerTask timerTask = new MockCallStateTimerTask(timer, callId, event); in addCallStateTimerTask()
462 int callId = INVALID_CALL_ID; in generateCallId() local
466 for (callId = MIN_CALL_ID; callId <= MAX_CALL_ID; callId++) { in generateCallId()
468 if (mCallList.get(idx).getCallId() == callId) { in generateCallId()
478 if (callId > MAX_CALL_ID) { in generateCallId()
[all …]
DIRadioDataImpl.java107 public void cancelHandover(int serial, int callId) { in cancelHandover() argument
270 public void startHandover(int serial, int callId) { in startHandover() argument
/cts/tests/tests/telephony/current/src/android/telephony/ims/cts/
DSipDialogAttributes.java39 public final String callId; field in SipDialogAttributes
50 callId = getNextString(); in SipDialogAttributes()
59 private SipDialogAttributes(String branchId, String callId, String fromUri, in SipDialogAttributes() argument
62 this.callId = callId; in SipDialogAttributes()
100 return new SipDialogAttributes(branchId, callId, mFromUri, fromTag, toUri, in copyWithNewBranch()
105 return new SipDialogAttributes(branchId, callId, mFromUri, fromTag, toUri, in fromExisting()
110 return new SipDialogAttributes(branchId, callId, toUri, fromTag, mFromUri, mToTag, in invertFromTo()
DSipMessageUtils.java131 String toContact, String toUri, String branchId, String callId, String fromTag, in generateSipRequest() argument
141 header += "Call-ID: " + callId; in generateSipRequest()
156 String fromContact, String toContact, String branchId, String callId, String fromTag, in generateSipResponse() argument
166 header += "Call-ID: " + callId; in generateSipResponse()
173 attr.toUri, attr.branchId, attr.callId, attr.fromTag, attr.getToTag(), in generateSipRequest()
180 attr.toHeader, attr.branchId, attr.callId, attr.fromTag, attr.getToTag()); in generateSipResponse()
DSipDetailsTest.java37 String callId = "call-id"; in testSipDetailsAttr() local
45 .setCallId(callId) in testSipDetailsAttr()
52 assertEquals(callId, debugInfo.getCallId()); in testSipDetailsAttr()
62 String callId = "call-id"; in testParcelUnparcel() local
70 .setCallId(callId) in testParcelUnparcel()
DPublishAttributesTest.java45 String callId = "call-id"; in testAttributes() local
53 .setCallId(callId) in testAttributes()
75 assertEquals(callId, received.getCallId()); in testAttributes()
85 String callId = "call-id"; in testParcelUnparcel() local
93 .setCallId(callId) in testParcelUnparcel()
DImsExternalCallStateTest.java36 String callId = "1"; in parcelUnparcel() local
43 ImsExternalCallState testState = new ImsExternalCallState(callId, address, localAddress, in parcelUnparcel()
DConferenceHelper.java46 public TestImsCallSessionImpl getActiveSession(String callId) { in getActiveSession() argument
53 if (entry.getKey().equals(callId)) { in getActiveSession()
DSipDelegateManagerTest.java447 ifaces.delegateConn.sendCleanupSession(attr.callId); in testSipDialogStateChanges()
448 ifaces.delegate.verifyCleanupSession(attr.callId); in testSipDialogStateChanges()
1300 String callId = "000050B04074-79e-fc9b8700-29df64-5f3e5811-26fa8"; in testParcelUnparcelSipMessage() local
1313 assertEquals(callId, m.getCallIdParameter()); in testParcelUnparcelSipMessage()
1419 ifaces.delegateConn.sendCleanupSession(attr.callId); in testCloseActiveDialog()
1420 ifaces.delegate.verifyCleanupSession(attr.callId); in testCloseActiveDialog()
1460 ifaces.delegateConn.sendCleanupSession(attr.callId); in testReceivedActiveDialogClose()
1461 ifaces.delegate.verifyCleanupSession(attr.callId); in testReceivedActiveDialogClose()
1510 ifaces.delegateConn.sendCleanupSession(attr.callId); in testActiveDialogPendingNewInvite()
1511 ifaces.delegate.verifyCleanupSession(attr.callId); in testActiveDialogPendingNewInvite()
[all …]
DTestSipDelegate.java79 public void cleanupSession(@NonNull String callId) { in cleanupSession() argument
81 mCleanupSipSessionRequests.offer(callId); in cleanupSession()
DImsRegistrationAttributesTest.java55 String callId = "call-id"; in testRegistrationTypeToTransportAttr() local
68 .setCallId(callId) in testRegistrationTypeToTransportAttr()
91 assertEquals(callId, attr.getSipDetails().getCallId()); in testRegistrationTypeToTransportAttr()
DImsCallingBase.java466 String callId = arrofstr[0].substring(index + 1); in getCallId() local
467 return callId; in getCallId()
470 public Call getCall(String callId) { in getCall() argument
477 if (entry.getKey().equals(callId)) { in getCall()
DTestSipDelegateConnection.java156 public void sendCleanupSession(String callId) { in sendCleanupSession() argument
158 connection.cleanupSession(callId); in sendCleanupSession()
DTestMmTelFeature.java345 String callId = mCallSession.getCallId(); in onIncomingCallReceivedReturnListener() local
349 notifyIncomingCall(incomingSession, callId, extras), in onIncomingCallReceivedReturnListener()
/cts/tests/tests/telephony/current/src/android/telephony/cts/
DDomainSelectionCallingBase.java223 protected Call getCall(String callId) { in getCall() argument
225 if (mCalls.isEmpty() || callId == null) { in getCall()
229 return mCalls.get(callId); in getCall()
237 String callId = arrofstr[0].substring(index + 1); in getCallId() local
238 return callId; in getCallId()
243 String callId = getCallId(call); in addCall() local
244 assertNotNull("Call Id is null", callId); in addCall()
245 mCurrentCallId = callId; in addCall()
246 mCalls.put(callId, call); in addCall()
256 String callId = getCallId(call); in removeCall() local
[all …]
/cts/tests/tests/telecom-cuj/src/android/telecom/cts/cuj/
DBaseAppVerifier.java342 public void switchToAnotherCallEndpoint(AppControlWrapper appControl, String callId) in switchToAnotherCallEndpoint() argument
344 CallEndpoint originalCallEndpoint = getCurrentCallEndpoint(appControl, callId); in switchToAnotherCallEndpoint()
345 CallEndpoint anotherCallEndpoint = getAnotherCallEndpoint(appControl, callId); in switchToAnotherCallEndpoint()
347 setAudioRouteStateAndVerify(appControl, callId, anotherCallEndpoint); in switchToAnotherCallEndpoint()
349 setAudioRouteStateAndVerify(appControl, callId, originalCallEndpoint); in switchToAnotherCallEndpoint()
361 public void verifyNotificationIsPostedForCall(AppControlWrapper appControl, String callId) { in verifyNotificationIsPostedForCall() argument
362 mBaseAppVerifierImpl.verifyNotificationPostedForCall(appControl, callId); in verifyNotificationIsPostedForCall()
365 public void removeNotificationForCall(AppControlWrapper appControl, String callId) in removeNotificationForCall() argument
367 appControl.removeNotificationForCall(callId); in removeNotificationForCall()
/cts/tests/tests/telecom/Api29InCallServiceTestApp/src/android/telecom/cts/api29incallservice/
DCtsApi29InCallServiceControl.java35 public int getCallState(String callId) {
37 .filter(c -> c.getDetails().getTelecomCallId().equals(callId))
/cts/tests/tests/telecom-apps/Utils/aidl/android/telecom/cts/apps/
DIAppControl.aidl62 NoDataTransaction removeNotificationForCall(String callId); in removeNotificationForCall() argument
63 BooleanTransaction isNotificationPostedForCall(String callId); in isNotificationPostedForCall() argument
/cts/tests/tests/telecom/Api29InCallServiceTestApp/aidl/android/telecom/cts/api29incallservice/
DICtsApi29InCallServiceControl.aidl20 int getCallState(String callId); in getCallState() argument
/cts/tests/tests/telecom-apps/Utils/src/android/telecom/cts/apps/
DAppControlWrapper.java338 public boolean isNotificationPostedForCall(String callId) throws RemoteException { in isNotificationPostedForCall() argument
341 BooleanTransaction transactionResult = mBinder.isNotificationPostedForCall(callId); in isNotificationPostedForCall()
350 public void removeNotificationForCall(String callId) throws RemoteException { in removeNotificationForCall() argument
353 NoDataTransaction transactionResult = mBinder.removeNotificationForCall(callId); in removeNotificationForCall()
DBaseAppVerifierImpl.java447 public void verifyNotificationPostedForCall(AppControlWrapper appControlWrapper, String callId){ in verifyNotificationPostedForCall() argument
458 return appControlWrapper.isNotificationPostedForCall(callId); in verifyNotificationPostedForCall()
467 + " notification manager", callId, in verifyNotificationPostedForCall()
/cts/tests/tests/telecom/src/android/telecom/cts/
DCallStreamingTest.java130 final ParcelUuid[] callId = new ParcelUuid[1]; in testStartCallStreaming() local
141 callId[0] = callControl.getCallId(); in testStartCallStreaming()
167 assertEquals(callId[0].toString(), in testStartCallStreaming()
170 assertEquals(callId[0].toString(), in testStartCallStreaming()
/cts/tests/tests/telecom-apps/ConnectionServiceVoipAppMain/src/android/telecom/cts/apps/connectionservicevoipappmain/
DVoipConnectionServiceControlMain.java357 public BooleanTransaction isNotificationPostedForCall(String callId) {
359 + ".isNotificationPostedForCall(" + (callId) + ")");
361 int targetNotificationId = getConnectionOrThrow(callId,
374 public NoDataTransaction removeNotificationForCall(String callId) {
376 + ".removeNotificationForCall(" + (callId) + ")");
379 getConnectionOrThrow(callId, stackTrace).getCallResources();
/cts/tests/tests/telecom-apps/TransactionalVoipAppMain/src/android/telecom/cts/apps/transactionalvoipappmain/
DTransactionalVoipAppControlMain.java381 public BooleanTransaction isNotificationPostedForCall(String callId) {
383 + ".isNotificationPostedForCall(" + (callId) + ")");
385 int targetNotificationId = getCallOrThrowError(callId,
398 public NoDataTransaction removeNotificationForCall(String callId) {
400 + ".removeNotificationForCall(" + (callId) + ")");
402 TransactionalCall call = getCallOrThrowError(callId, stackTrace);
/cts/tests/tests/telecom-apps/ManagedConnectionService/src/android/telecom/cts/apps/managedapp/
DManagedAppControl.java339 public BooleanTransaction isNotificationPostedForCall(String callId) {
341 + ".isNotificationPostedForCall(" + (callId) + ")");
349 public NoDataTransaction removeNotificationForCall(String callId) {
351 + ".removeNotificationForCall(" + (callId) + ")");

12