Home
last modified time | relevance | path

Searched refs:callStateList (Results 1 – 3 of 3) sorted by relevance

/cts/tests/tests/telephony/current/src/android/telephony/ims/cts/
DImsCallingTest.java1247 List<CallState> callStateList = queue.poll(ImsUtils.TEST_TIMEOUT_MS, TimeUnit.MILLISECONDS); in testNotifyCallStateChanged() local
1248 assertNotNull(callStateList); in testNotifyCallStateChanged()
1249 assertEquals(1, callStateList.size()); in testNotifyCallStateChanged()
1251 PreciseCallState.PRECISE_CALL_STATE_ACTIVE, callStateList.get(0).getCallState()); in testNotifyCallStateChanged()
1252 assertEquals(callSessionId, callStateList.get(0).getImsCallSessionId()); in testNotifyCallStateChanged()
1253 assertEquals(ImsCallProfile.CALL_TYPE_VOICE, callStateList.get(0).getImsCallType()); in testNotifyCallStateChanged()
1255 callStateList.get(0).getImsCallServiceType()); in testNotifyCallStateChanged()
1267 callStateList = queue.poll(ImsUtils.TEST_TIMEOUT_MS, TimeUnit.MILLISECONDS); in testNotifyCallStateChanged()
1268 assertNotNull(callStateList); in testNotifyCallStateChanged()
1269 assertEquals(1, callStateList.size()); in testNotifyCallStateChanged()
[all …]
/cts/tests/tests/telephony/current/src/android/telephony/cts/
DTelephonyRegistryManagerTest.java743 public void onCallStatesChanged(@NonNull List<CallState> callStateList) { in onCallStatesChanged() argument
744 mTestCallStatesQueue.offer(callStateList); in onCallStatesChanged()
DTelephonyCallbackTest.java568 public void onCallStatesChanged(List<CallState> callStateList) { in onCallStatesChanged() argument
571 mCallStateList = callStateList; in onCallStatesChanged()