Home
last modified time | relevance | path

Searched refs:cellInfo (Results 1 – 8 of 8) sorted by relevance

/cts/tests/tests/telephony/current/src/android/telephony/cts/
DCellInfoTest.java202 List<CellInfo> cellInfo; field in CellInfoTest.CellInfoResultsCallback
205 public synchronized void onCellInfo(List<CellInfo> cellInfo) { in onCellInfo() argument
206 this.cellInfo = cellInfo; in onCellInfo()
211 if (cellInfo == null) { in wait()
218 List<CellInfo> cellInfo; field in CellInfoTest.CellInfoListener
225 public synchronized void onCellInfoChanged(List<CellInfo> cellInfo) { in onCellInfoChanged() argument
226 this.cellInfo = cellInfo; in onCellInfoChanged()
231 if (cellInfo == null) { in wait()
273 assertNotNull("CellInfo Listener Never Fired on Registration", listener.cellInfo); in testPhoneStateListenerCallback()
275 List<CellInfo> referenceList = listener.cellInfo; in testPhoneStateListenerCallback()
[all …]
DTelephonyManagerTest.java4175 for (CellInfo cellInfo : mTelephonyManager.getAllCellInfo()) { in testGetAllCellInfo()
4176 CellIdentity cellIdentity = cellInfo.getCellIdentity(); in testGetAllCellInfo()
4485 public void onCellInfoChanged(@NonNull List<CellInfo> cellInfo) { in onCellInfoChanged() argument
4565 public List<CellInfo> cellInfo; field in CellInfoResultsCallback
4568 public synchronized void onCellInfo(List<CellInfo> cellInfo) { in onCellInfo() argument
4569 this.cellInfo = cellInfo; in onCellInfo()
4574 if (cellInfo == null) { in wait()
DPhoneStateListenerTest.java906 public void onCellInfoChanged(List<CellInfo> cellInfo) { in testOnCellInfoChanged()
DTelephonyCallbackTest.java920 public void onCellInfoChanged(List<CellInfo> cellInfo) { in onCellInfoChanged() argument
/cts/tests/tests/telephony/sdk28/src/android/telephony/sdk28/cts/
DCellInfoTest.java83 List<CellInfo> cellInfo = ShellIdentityUtils.invokeMethodWithShellPermissions( in testCellInfoSdk28() local
87 assertNotNull("TelephonyManager.getAllCellInfo() returned NULL CellInfo", cellInfo); in testCellInfoSdk28()
88 assertFalse("TelephonyManager.getAllCellInfo() returned an empty list", cellInfo.isEmpty()); in testCellInfoSdk28()
90 final long initialTime = cellInfo.get(0).getTimeStamp(); in testCellInfoSdk28()
/cts/tests/tests/carrierapi/src/android/carrierapi/cts/
DNetworkScanApiTest.java241 public List<CellInfo> cellInfo; field in NetworkScanApiTest.CellInfoResultsCallback
244 public synchronized void onCellInfo(List<CellInfo> cellInfo) { in onCellInfo() argument
245 this.cellInfo = cellInfo; in onCellInfo()
250 if (cellInfo == null) { in wait()
262 CellInfo cellInfo = allCellInfo.get(i); in getRadioAccessSpecifier() local
263 if (cellInfo instanceof CellInfoLte) { in getRadioAccessSpecifier()
264 lteChannels.add(((CellInfoLte) cellInfo).getCellIdentity().getEarfcn()); in getRadioAccessSpecifier()
265 } else if (cellInfo instanceof CellInfoWcdma) { in getRadioAccessSpecifier()
266 wcdmaChannels.add(((CellInfoWcdma) cellInfo).getCellIdentity().getUarfcn()); in getRadioAccessSpecifier()
267 } else if (cellInfo instanceof CellInfoGsm) { in getRadioAccessSpecifier()
[all …]
/cts/tests/location/location_gnss/src/android/location/cts/gnss/suplClient/
DSuplRrlpMessagesGenerator.java122 CellInfo cellInfo = locationId.setCellInfoToNewInstance(); in generateSuplStartLocalLocationMessage() local
123 cellInfo.setExtensionVer2_CellInfo_extensionToNewInstance(); in generateSuplStartLocalLocationMessage()
132 cellInfo.getExtensionVer2_CellInfo_extension().setWlanAPToNewInstance() in generateSuplStartLocalLocationMessage()
200 CellInfo cellInfo = locationId.setCellInfoToNewInstance(); in generateSuplPositionInitLocalLocationMessage() local
201 cellInfo.setExtensionVer2_CellInfo_extensionToNewInstance(); in generateSuplPositionInitLocalLocationMessage()
210 cellInfo.getExtensionVer2_CellInfo_extension().setWlanAPToNewInstance() in generateSuplPositionInitLocalLocationMessage()
/cts/tests/tests/telephony/current/LocationAccessingApp/src/android/telephony/cts/locationaccessingapp/
DCtsLocationAccessService.java185 public void onCellInfo(List<CellInfo> cellInfo) { in requestCellInfoUpdate()
186 queue.offer(cellInfo); in requestCellInfoUpdate()