Home
last modified time | relevance | path

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

/cts/tests/tests/telephony/current/src/android/telephony/cts/
DCellInfoTest.java285 CellInfoResultsCallback resultsCallback = new CellInfoResultsCallback(); in testPhoneStateListenerCallback() local
287 mTm.requestCellInfoUpdate(mSimpleExecutor, resultsCallback); in testPhoneStateListenerCallback()
288 resultsCallback.wait(MAX_CELLINFO_WAIT_MILLIS); in testPhoneStateListenerCallback()
299 referenceList.containsAll(resultsCallback.cellInfo)); in testPhoneStateListenerCallback()
301 resultsCallback.cellInfo = null; in testPhoneStateListenerCallback()
305 mTm.requestCellInfoUpdate(mSimpleExecutor, resultsCallback); in testPhoneStateListenerCallback()
306 resultsCallback.wait(MAX_CELLINFO_WAIT_MILLIS); in testPhoneStateListenerCallback()
307 assertNotNull("CellInfoCallback should return valid data", resultsCallback.cellInfo); in testPhoneStateListenerCallback()
308 if (referenceList.containsAll(resultsCallback.cellInfo)) { in testPhoneStateListenerCallback()
326 resultsCallback.cellInfo = null; in testPhoneStateListenerCallback()
[all …]
DTelephonyManagerTest.java5876 CellInfoResultsCallback resultsCallback = new CellInfoResultsCallback(); in testRegisterTelephonyCallback() local
5877 mTelephonyManager.requestCellInfoUpdate(mSimpleExecutor, resultsCallback); in testRegisterTelephonyCallback()
/cts/tests/tests/carrierapi/src/android/carrierapi/cts/
DNetworkScanApiTest.java514 CellInfoResultsCallback resultsCallback = new CellInfoResultsCallback(); in getCellInfo() local
515 mTelephonyManager.requestCellInfoUpdate(r -> r.run(), resultsCallback); in getCellInfo()
517 resultsCallback.wait(MAX_CELLINFO_WAIT_MILLIS); in getCellInfo()
521 return resultsCallback.cellInfo; in getCellInfo()