Searched refs:cil (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/telephony/java/android/telephony/ |
D | CellInfoLte.java | 61 final android.hardware.radio.V1_0.CellInfoLte cil = ci.lte.get(0); in CellInfoLte() local 62 mCellIdentityLte = new CellIdentityLte(cil.cellIdentityLte); in CellInfoLte() 63 mCellSignalStrengthLte = new CellSignalStrengthLte(cil.signalStrengthLte); in CellInfoLte() 70 final android.hardware.radio.V1_2.CellInfoLte cil = ci.lte.get(0); in CellInfoLte() local 71 mCellIdentityLte = new CellIdentityLte(cil.cellIdentityLte); in CellInfoLte() 72 mCellSignalStrengthLte = new CellSignalStrengthLte(cil.signalStrengthLte); in CellInfoLte() 79 final android.hardware.radio.V1_4.CellInfoLte cil = ci.info.lte(); in CellInfoLte() local 80 mCellIdentityLte = new CellIdentityLte(cil.base.cellIdentityLte); in CellInfoLte() 81 mCellSignalStrengthLte = new CellSignalStrengthLte(cil.base.signalStrengthLte); in CellInfoLte() 82 mCellConfig = new CellConfigLte(cil.cellConfig); in CellInfoLte() [all …]
|
D | CellInfoNr.java | 51 final android.hardware.radio.V1_4.CellInfoNr cil = ci.info.nr(); in CellInfoNr() local 52 mCellIdentity = new CellIdentityNr(cil.cellidentity); in CellInfoNr() 53 mCellSignalStrength = new CellSignalStrengthNr(cil.signalStrength); in CellInfoNr() 59 final android.hardware.radio.V1_5.CellInfoNr cil = ci.ratSpecificInfo.nr(); in CellInfoNr() local 60 mCellIdentity = new CellIdentityNr(cil.cellIdentityNr); in CellInfoNr() 61 mCellSignalStrength = new CellSignalStrengthNr(cil.signalStrengthNr); in CellInfoNr()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | NetworkScanResultTest.java | 55 CellIdentityLte cil = new CellIdentityLte( in testParcel() local 62 lte.setCellIdentity(cil); in testParcel()
|
D | RILTest.java | 1357 CellIdentityLte cil = new CellIdentityLte(CI, PCI, TAC, EARFCN, new int[] {}, in testConvertHalCellInfoListForLTE() local 1362 expected.setCellIdentity(cil); in testConvertHalCellInfoListForLTE() 1554 CellIdentityLte cil = new CellIdentityLte( in testConvertHalCellInfoList_1_2ForLTE() local 1559 expected.setCellIdentity(cil); in testConvertHalCellInfoList_1_2ForLTE() 1576 CellIdentityLte cil = new CellIdentityLte(CI, PCI, TAC, EARFCN, new int[] {}, in testConvertHalCellInfoList_1_2_ForLTEWithEmptyOperatorInfo() local 1581 expected.setCellIdentity(cil); in testConvertHalCellInfoList_1_2_ForLTEWithEmptyOperatorInfo() 1600 CellIdentityLte cil = new CellIdentityLte( in testConvertHalCellInfoList_1_2ForLTEWithEmptyMccMnc() local 1605 expected.setCellIdentity(cil); in testConvertHalCellInfoList_1_2ForLTEWithEmptyMccMnc() 2133 List<CellInfo> cil = RIL.convertHalCellInfoList_1_4(records); in testCellInfoTimestamp_1_4() local 2136 final long ts = cil.get(0).getTimeStamp(); in testCellInfoTimestamp_1_4() [all …]
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
D | CellularLinkLayerStatsCollectorTest.java | 105 List<CellInfo> cil = new ArrayList<>(); in generateCellInfoList() local 130 cil.add(ci); in generateCellInfoList() 132 return cil; in generateCellInfoList()
|