Home
last modified time | relevance | path

Searched refs:CellInfo (Results 1 – 25 of 66) sorted by relevance

123

/frameworks/base/telephony/java/android/telephony/
DCellInfo.java23 import android.hardware.radio.V1_4.CellInfo.Info;
36 public abstract class CellInfo implements Parcelable { class
153 protected CellInfo() { in CellInfo() method in CellInfo
160 protected CellInfo(CellInfo ci) { in CellInfo() method in CellInfo
219 public CellInfo sanitizeLocationInfo() { in sanitizeLocationInfo()
250 if (!(o instanceof CellInfo)) return false; in equals()
251 CellInfo cellInfo = (CellInfo) o; in equals()
297 protected CellInfo(Parcel in) { in CellInfo() method in CellInfo
304 …public static final @android.annotation.NonNull Creator<CellInfo> CREATOR = new Creator<CellInfo>(…
306 public CellInfo createFromParcel(Parcel in) {
[all …]
DCellIdentityCdma.java74 super(TAG, CellInfo.TYPE_CDMA, null, null, null, null); in CellIdentityCdma()
75 mNetworkId = CellInfo.UNAVAILABLE; in CellIdentityCdma()
76 mSystemId = CellInfo.UNAVAILABLE; in CellIdentityCdma()
77 mBasestationId = CellInfo.UNAVAILABLE; in CellIdentityCdma()
78 mLongitude = CellInfo.UNAVAILABLE; in CellIdentityCdma()
79 mLatitude = CellInfo.UNAVAILABLE; in CellIdentityCdma()
99 super(TAG, CellInfo.TYPE_CDMA, null, null, alphal, alphas); in CellIdentityCdma()
110 mLongitude = mLatitude = CellInfo.UNAVAILABLE; in CellIdentityCdma()
138 return new CellIdentityCdma(CellInfo.UNAVAILABLE, CellInfo.UNAVAILABLE, in sanitizeLocationInfo()
139 CellInfo.UNAVAILABLE, CellInfo.UNAVAILABLE, CellInfo.UNAVAILABLE, in sanitizeLocationInfo()
[all …]
DCellIdentityGsm.java64 super(TAG, CellInfo.TYPE_GSM, null, null, null, null); in CellIdentityGsm()
65 mLac = CellInfo.UNAVAILABLE; in CellIdentityGsm()
66 mCid = CellInfo.UNAVAILABLE; in CellIdentityGsm()
67 mArfcn = CellInfo.UNAVAILABLE; in CellIdentityGsm()
68 mBsic = CellInfo.UNAVAILABLE; in CellIdentityGsm()
90 super(TAG, CellInfo.TYPE_GSM, mccStr, mncStr, alphal, alphas); in CellIdentityGsm()
107 cid.bsic == (byte) 0xFF ? CellInfo.UNAVAILABLE : cid.bsic, in CellIdentityGsm()
114 cid.base.bsic == (byte) 0xFF ? CellInfo.UNAVAILABLE : cid.base.bsic, cid.base.mcc, in CellIdentityGsm()
122 cid.base.base.bsic == (byte) 0xFF ? CellInfo.UNAVAILABLE in CellIdentityGsm()
140 return new CellIdentityGsm(CellInfo.UNAVAILABLE, CellInfo.UNAVAILABLE, CellInfo.UNAVAILABLE, in sanitizeLocationInfo()
[all …]
DCellSignalStrengthTdscdma.java80 this(CellInfo.UNAVAILABLE, CellInfo.UNAVAILABLE, in CellSignalStrengthTdscdma()
81 tdscdma.rscp != CellInfo.UNAVAILABLE ? -tdscdma.rscp : tdscdma.rscp); in CellSignalStrengthTdscdma()
83 if (mRssi == CellInfo.UNAVAILABLE && mRscp == CellInfo.UNAVAILABLE) { in CellSignalStrengthTdscdma()
94 if (mRssi == CellInfo.UNAVAILABLE && mRscp == CellInfo.UNAVAILABLE) { in CellSignalStrengthTdscdma()
121 mRssi = CellInfo.UNAVAILABLE; in setDefaultValues()
122 mBitErrorRate = CellInfo.UNAVAILABLE; in setDefaultValues()
123 mRscp = CellInfo.UNAVAILABLE; in setDefaultValues()
187 if (mRscp != CellInfo.UNAVAILABLE) return getAsuFromRscpDbm(mRscp); in getAsuLevel()
190 if (mRssi != CellInfo.UNAVAILABLE) return getAsuFromRssiDbm(mRssi); in getAsuLevel()
191 return getAsuFromRscpDbm(CellInfo.UNAVAILABLE); in getAsuLevel()
DCellIdentityLte.java72 super(TAG, CellInfo.TYPE_LTE, null, null, null, null); in CellIdentityLte()
73 mCi = CellInfo.UNAVAILABLE; in CellIdentityLte()
74 mPci = CellInfo.UNAVAILABLE; in CellIdentityLte()
75 mTac = CellInfo.UNAVAILABLE; in CellIdentityLte()
76 mEarfcn = CellInfo.UNAVAILABLE; in CellIdentityLte()
78 mBandwidth = CellInfo.UNAVAILABLE; in CellIdentityLte()
96 this(ci, pci, tac, CellInfo.UNAVAILABLE, new int[] {}, CellInfo.UNAVAILABLE, in CellIdentityLte()
122 super(TAG, CellInfo.TYPE_LTE, mccStr, mncStr, alphal, alphas); in CellIdentityLte()
142 CellInfo.UNAVAILABLE, cid.mcc, cid.mnc, "", "", new ArraySet<>(), null); in CellIdentityLte()
172 return new CellIdentityLte(CellInfo.UNAVAILABLE, CellInfo.UNAVAILABLE, CellInfo.UNAVAILABLE, in sanitizeLocationInfo()
[all …]
DCellIdentityWcdma.java66 super(TAG, CellInfo.TYPE_WCDMA, null, null, null, null); in CellIdentityWcdma()
67 mLac = CellInfo.UNAVAILABLE; in CellIdentityWcdma()
68 mCid = CellInfo.UNAVAILABLE; in CellIdentityWcdma()
69 mPsc = CellInfo.UNAVAILABLE; in CellIdentityWcdma()
70 mUarfcn = CellInfo.UNAVAILABLE; in CellIdentityWcdma()
95 super(TAG, CellInfo.TYPE_WCDMA, mccStr, mncStr, alphal, alphas); in CellIdentityWcdma()
142 return new CellIdentityWcdma(CellInfo.UNAVAILABLE, CellInfo.UNAVAILABLE, in sanitizeLocationInfo()
143 CellInfo.UNAVAILABLE, CellInfo.UNAVAILABLE, mMccStr, mMncStr, in sanitizeLocationInfo()
158 if (mLac == CellInfo.UNAVAILABLE || mCid == CellInfo.UNAVAILABLE) return; in updateGlobalCellId()
170 return (mMccStr != null) ? Integer.valueOf(mMccStr) : CellInfo.UNAVAILABLE; in getMcc()
[all …]
DCellSignalStrength.java112 if (asu > 31 || asu < 0) return CellInfo.UNAVAILABLE; in getRssiDbmFromAsu()
119 if (dbm == CellInfo.UNAVAILABLE) return 99; in getAsuFromRssiDbm()
126 if (asu > 96 || asu < 0) return CellInfo.UNAVAILABLE; in getRscpDbmFromAsu()
133 if (dbm == CellInfo.UNAVAILABLE) return 255; in getAsuFromRscpDbm()
140 if (asu > 49 || asu < 0) return CellInfo.UNAVAILABLE; in getEcNoDbFromAsu()
146 if (value < rangeMin || value > rangeMax) return CellInfo.UNAVAILABLE; in inRangeOrUnavailable()
153 if ((value < rangeMin || value > rangeMax) && value != special) return CellInfo.UNAVAILABLE; in inRangeOrUnavailable()
DCellIdentityTdscdma.java64 super(TAG, CellInfo.TYPE_TDSCDMA, null, null, null, null); in CellIdentityTdscdma()
65 mLac = CellInfo.UNAVAILABLE; in CellIdentityTdscdma()
66 mCid = CellInfo.UNAVAILABLE; in CellIdentityTdscdma()
67 mCpid = CellInfo.UNAVAILABLE; in CellIdentityTdscdma()
68 mUarfcn = CellInfo.UNAVAILABLE; in CellIdentityTdscdma()
94 super(TAG, CellInfo.TYPE_TDSCDMA, mcc, mnc, alphal, alphas); in CellIdentityTdscdma()
117 this(cid.mcc, cid.mnc, cid.lac, cid.cid, cid.cpid, CellInfo.UNAVAILABLE, "", "", in CellIdentityTdscdma()
143 return new CellIdentityTdscdma(mMccStr, mMncStr, CellInfo.UNAVAILABLE, CellInfo.UNAVAILABLE, in sanitizeLocationInfo()
144 CellInfo.UNAVAILABLE, CellInfo.UNAVAILABLE, mAlphaLong, mAlphaShort, in sanitizeLocationInfo()
159 if (mLac == CellInfo.UNAVAILABLE || mCid == CellInfo.UNAVAILABLE) return; in updateGlobalCellId()
[all …]
DCellSignalStrengthWcdma.java101 CellInfo.UNAVAILABLE, CellInfo.UNAVAILABLE); in CellSignalStrengthWcdma()
103 if (mRssi == CellInfo.UNAVAILABLE && mRscp == CellInfo.UNAVAILABLE) { in CellSignalStrengthWcdma()
116 if (mRssi == CellInfo.UNAVAILABLE && mRscp == CellInfo.UNAVAILABLE) { in CellSignalStrengthWcdma()
144 mRssi = CellInfo.UNAVAILABLE; in setDefaultValues()
145 mBitErrorRate = CellInfo.UNAVAILABLE; in setDefaultValues()
146 mRscp = CellInfo.UNAVAILABLE; in setDefaultValues()
147 mEcNo = CellInfo.UNAVAILABLE; in setDefaultValues()
210 if (mRscp != CellInfo.UNAVAILABLE) return mRscp; in getDbm()
223 if (mRscp != CellInfo.UNAVAILABLE) return getAsuFromRscpDbm(mRscp); in getAsuLevel()
226 if (mRssi != CellInfo.UNAVAILABLE) return getAsuFromRssiDbm(mRssi); in getAsuLevel()
[all …]
DCellIdentityNr.java57 super(TAG, CellInfo.TYPE_NR, null, null, null, null); in CellIdentityNr()
58 mNrArfcn = CellInfo.UNAVAILABLE; in CellIdentityNr()
59 mPci = CellInfo.UNAVAILABLE; in CellIdentityNr()
60 mTac = CellInfo.UNAVAILABLE; in CellIdentityNr()
61 mNci = CellInfo.UNAVAILABLE; in CellIdentityNr()
86 super(TAG, CellInfo.TYPE_NR, mccStr, mncStr, alphal, alphas); in CellIdentityNr()
120 return new CellIdentityNr(CellInfo.UNAVAILABLE, CellInfo.UNAVAILABLE, mNrArfcn, in sanitizeLocationInfo()
121 mBands, mMccStr, mMncStr, CellInfo.UNAVAILABLE_LONG, mAlphaLong, mAlphaShort, in sanitizeLocationInfo()
131 if (mNci == CellInfo.UNAVAILABLE_LONG) return; in updateGlobalCellId()
144 int tac = mTac != CellInfo.UNAVAILABLE ? mTac : -1; in asCellLocation()
[all …]
DCellSignalStrengthLte.java165 this(rssi, rsrp, rsrq, rssnr, CellInfo.UNAVAILABLE, cqi, timingAdvance); in CellSignalStrengthLte()
172 lte.rsrp != CellInfo.UNAVAILABLE ? -lte.rsrp : lte.rsrp, in CellSignalStrengthLte()
173 lte.rsrq != CellInfo.UNAVAILABLE ? -lte.rsrq : lte.rsrq, in CellSignalStrengthLte()
181 lte.base.rsrp != CellInfo.UNAVAILABLE ? -lte.base.rsrp : lte.base.rsrp, in CellSignalStrengthLte()
182 lte.base.rsrq != CellInfo.UNAVAILABLE ? -lte.base.rsrq : lte.base.rsrq, in CellSignalStrengthLte()
215 mSignalStrength = CellInfo.UNAVAILABLE; in setDefaultValues()
216 mRssi = CellInfo.UNAVAILABLE; in setDefaultValues()
217 mRsrp = CellInfo.UNAVAILABLE; in setDefaultValues()
218 mRsrq = CellInfo.UNAVAILABLE; in setDefaultValues()
219 mRssnr = CellInfo.UNAVAILABLE; in setDefaultValues()
[all …]
DCellSignalStrengthCdma.java111 mCdmaDbm = CellInfo.UNAVAILABLE; in setDefaultValues()
112 mCdmaEcio = CellInfo.UNAVAILABLE; in setDefaultValues()
113 mEvdoDbm = CellInfo.UNAVAILABLE; in setDefaultValues()
114 mEvdoEcio = CellInfo.UNAVAILABLE; in setDefaultValues()
115 mEvdoSnr = CellInfo.UNAVAILABLE; in setDefaultValues()
179 if (cdmaDbm == CellInfo.UNAVAILABLE) cdmaAsuLevel = 99;
188 if (cdmaEcio == CellInfo.UNAVAILABLE) ecioAsuLevel = 99;
210 if (cdmaDbm == CellInfo.UNAVAILABLE) levelDbm = SIGNAL_STRENGTH_NONE_OR_UNKNOWN; in getCdmaLevel()
218 if (cdmaEcio == CellInfo.UNAVAILABLE) levelEcio = SIGNAL_STRENGTH_NONE_OR_UNKNOWN; in getCdmaLevel()
239 if (evdoDbm == CellInfo.UNAVAILABLE) levelEvdoDbm = SIGNAL_STRENGTH_NONE_OR_UNKNOWN; in getEvdoLevel()
[all …]
DCellInfoWcdma.java29 public final class CellInfoWcdma extends CellInfo implements Parcelable {
52 public CellInfoWcdma(android.hardware.radio.V1_0.CellInfo ci) { in CellInfoWcdma()
60 public CellInfoWcdma(android.hardware.radio.V1_2.CellInfo ci) { in CellInfoWcdma()
68 public CellInfoWcdma(android.hardware.radio.V1_4.CellInfo ci, long timeStamp) { in CellInfoWcdma()
76 public CellInfoWcdma(android.hardware.radio.V1_5.CellInfo ci, long timeStamp) { in CellInfoWcdma()
84 public CellInfoWcdma(android.hardware.radio.V1_6.CellInfo ci, long timeStamp) { in CellInfoWcdma()
114 public CellInfo sanitizeLocationInfo() { in sanitizeLocationInfo()
DCellInfoGsm.java30 public final class CellInfoGsm extends CellInfo implements Parcelable {
54 public CellInfoGsm(android.hardware.radio.V1_0.CellInfo ci) { in CellInfoGsm()
62 public CellInfoGsm(android.hardware.radio.V1_2.CellInfo ci) { in CellInfoGsm()
70 public CellInfoGsm(android.hardware.radio.V1_4.CellInfo ci, long timeStamp) { in CellInfoGsm()
78 public CellInfoGsm(android.hardware.radio.V1_5.CellInfo ci, long timeStamp) { in CellInfoGsm()
86 public CellInfoGsm(android.hardware.radio.V1_6.CellInfo ci, long timeStamp) { in CellInfoGsm()
116 public CellInfo sanitizeLocationInfo() { in sanitizeLocationInfo()
DCellInfoTdscdma.java34 public final class CellInfoTdscdma extends CellInfo implements Parcelable {
57 public CellInfoTdscdma(android.hardware.radio.V1_0.CellInfo ci) { in CellInfoTdscdma()
65 public CellInfoTdscdma(android.hardware.radio.V1_2.CellInfo ci) { in CellInfoTdscdma()
73 public CellInfoTdscdma(android.hardware.radio.V1_4.CellInfo ci, long timeStamp) { in CellInfoTdscdma()
81 public CellInfoTdscdma(android.hardware.radio.V1_5.CellInfo ci, long timeStamp) { in CellInfoTdscdma()
89 public CellInfoTdscdma(android.hardware.radio.V1_6.CellInfo ci, long timeStamp) { in CellInfoTdscdma()
119 public CellInfo sanitizeLocationInfo() { in sanitizeLocationInfo()
DCellSignalStrengthNr.java200 this(csiRsrp, csiRsrq, csiSinr, CellInfo.UNAVAILABLE, Collections.emptyList(), in CellSignalStrengthNr()
228 return val != CellInfo.UNAVAILABLE ? -val : val; in flip()
356 mCsiRsrp = CellInfo.UNAVAILABLE; in setDefaultValues()
357 mCsiRsrq = CellInfo.UNAVAILABLE; in setDefaultValues()
358 mCsiSinr = CellInfo.UNAVAILABLE; in setDefaultValues()
359 mCsiCqiTableIndex = CellInfo.UNAVAILABLE; in setDefaultValues()
361 mSsRsrp = CellInfo.UNAVAILABLE; in setDefaultValues()
362 mSsRsrq = CellInfo.UNAVAILABLE; in setDefaultValues()
363 mSsSinr = CellInfo.UNAVAILABLE; in setDefaultValues()
456 if (measure == CellInfo.UNAVAILABLE) { in updateLevelWithMeasure()
[all …]
DCellInfoCdma.java30 public final class CellInfoCdma extends CellInfo implements Parcelable {
55 public CellInfoCdma(android.hardware.radio.V1_0.CellInfo ci) { in CellInfoCdma()
64 public CellInfoCdma(android.hardware.radio.V1_2.CellInfo ci) { in CellInfoCdma()
73 public CellInfoCdma(android.hardware.radio.V1_4.CellInfo ci, long timeStamp) { in CellInfoCdma()
82 public CellInfoCdma(android.hardware.radio.V1_5.CellInfo ci, long timeStamp) { in CellInfoCdma()
91 public CellInfoCdma(android.hardware.radio.V1_6.CellInfo ci, long timeStamp) { in CellInfoCdma()
123 public CellInfo sanitizeLocationInfo() { in sanitizeLocationInfo()
DCellIdentity.java129 public @CellInfo.Type int getType() { in getType()
296 case CellInfo.TYPE_GSM: return CellIdentityGsm.createFromParcelBody(in);
297 case CellInfo.TYPE_WCDMA: return CellIdentityWcdma.createFromParcelBody(in);
298 case CellInfo.TYPE_CDMA: return CellIdentityCdma.createFromParcelBody(in);
299 case CellInfo.TYPE_LTE: return CellIdentityLte.createFromParcelBody(in);
300 case CellInfo.TYPE_TDSCDMA:
302 case CellInfo.TYPE_NR: return CellIdentityNr.createFromParcelBody(in);
320 if (value < rangeMin || value > rangeMax) return CellInfo.UNAVAILABLE; in inRangeOrUnavailable()
326 if (value < rangeMin || value > rangeMax) return CellInfo.UNAVAILABLE_LONG; in inRangeOrUnavailable()
333 if ((value < rangeMin || value > rangeMax) && value != special) return CellInfo.UNAVAILABLE; in inRangeOrUnavailable()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DCellSignalStrengthWcdmaTest.java26 import android.telephony.CellInfo;
52 assertEquals(CellInfo.UNAVAILABLE, css.getRssi()); in testInvalidConstructor()
53 assertEquals(CellInfo.UNAVAILABLE, css.getBitErrorRate()); in testInvalidConstructor()
54 assertEquals(CellInfo.UNAVAILABLE, css.getRscp()); in testInvalidConstructor()
55 assertEquals(CellInfo.UNAVAILABLE, css.getEcNo()); in testInvalidConstructor()
61 assertEquals(CellInfo.UNAVAILABLE, css.getRssi()); in testDefaultConstructor()
62 assertEquals(CellInfo.UNAVAILABLE, css.getBitErrorRate()); in testDefaultConstructor()
63 assertEquals(CellInfo.UNAVAILABLE, css.getRscp()); in testDefaultConstructor()
64 assertEquals(CellInfo.UNAVAILABLE, css.getEcNo()); in testDefaultConstructor()
DCellSignalStrengthTdscdmaTest.java24 import android.telephony.CellInfo;
48 assertEquals(CellInfo.UNAVAILABLE, css.getRssi()); in testInvalidConstructor()
49 assertEquals(CellInfo.UNAVAILABLE, css.getBitErrorRate()); in testInvalidConstructor()
50 assertEquals(CellInfo.UNAVAILABLE, css.getRscp()); in testInvalidConstructor()
56 assertEquals(CellInfo.UNAVAILABLE, css.getRssi()); in testDefaultConstructor()
57 assertEquals(CellInfo.UNAVAILABLE, css.getBitErrorRate()); in testDefaultConstructor()
58 assertEquals(CellInfo.UNAVAILABLE, css.getRscp()); in testDefaultConstructor()
DCellSignalStrengthNrTest.java26 import android.telephony.CellInfo;
127 nrSignalStrength.base.csiRsrp = CellInfo.UNAVAILABLE; in testUnavailableValueWithHal()
128 nrSignalStrength.base.csiRsrq = CellInfo.UNAVAILABLE; in testUnavailableValueWithHal()
129 nrSignalStrength.base.csiSinr = CellInfo.UNAVAILABLE; in testUnavailableValueWithHal()
130 nrSignalStrength.csiCqiTableIndex = CellInfo.UNAVAILABLE; in testUnavailableValueWithHal()
132 nrSignalStrength.base.ssRsrp = CellInfo.UNAVAILABLE; in testUnavailableValueWithHal()
133 nrSignalStrength.base.ssRsrq = CellInfo.UNAVAILABLE; in testUnavailableValueWithHal()
134 nrSignalStrength.base.ssSinr = CellInfo.UNAVAILABLE; in testUnavailableValueWithHal()
138 assertThat(css.getCsiRsrp()).isEqualTo(CellInfo.UNAVAILABLE); in testUnavailableValueWithHal()
139 assertThat(css.getCsiRsrq()).isEqualTo(CellInfo.UNAVAILABLE); in testUnavailableValueWithHal()
[all …]
DSignalStrengthTest.java25 import android.telephony.CellInfo;
76 assertEquals(CellInfo.UNAVAILABLE, s.getCdmaDbm()); in testDefaults()
77 assertEquals(CellInfo.UNAVAILABLE, s.getCdmaEcio()); in testDefaults()
78 assertEquals(CellInfo.UNAVAILABLE, s.getEvdoDbm()); in testDefaults()
79 assertEquals(CellInfo.UNAVAILABLE, s.getEvdoEcio()); in testDefaults()
80 assertEquals(CellInfo.UNAVAILABLE, s.getEvdoSnr()); in testDefaults()
81 assertEquals(CellInfo.UNAVAILABLE, s.getGsmBitErrorRate()); in testDefaults()
173 CellInfo.UNAVAILABLE, // cqiTableIndex in createSignalStrengthLteReportRsrq()
174 CellInfo.UNAVAILABLE, // cqi in createSignalStrengthLteReportRsrq()
175 CellInfo.UNAVAILABLE); // timingAdvance in createSignalStrengthLteReportRsrq()
[all …]
DCellIdentityTdscdmaTest.java21 import android.telephony.CellInfo;
60 assertEquals(CellInfo.UNAVAILABLE, ci.getLac()); in testDefaultConstructor()
61 assertEquals(CellInfo.UNAVAILABLE, ci.getCid()); in testDefaultConstructor()
62 assertEquals(CellInfo.UNAVAILABLE, ci.getCpid()); in testDefaultConstructor()
63 assertEquals(CellInfo.UNAVAILABLE, ci.getChannelNumber()); in testDefaultConstructor()
64 assertEquals(CellInfo.UNAVAILABLE, ci.getUarfcn()); in testDefaultConstructor()
140 p.writeInt(CellInfo.TYPE_TDSCDMA); in testParcelWithUnknowMccMnc()
165 p.writeInt(CellInfo.TYPE_TDSCDMA); in testParcelWithInvalidMccMnc()
DRILTest.java137 import android.telephony.CellInfo;
247 private static final int RSSNR = CellInfo.UNAVAILABLE;
564 private RadioAccessSpecifier getRadioAccessSpecifier(CellInfo cellInfo) { in getRadioAccessSpecifier()
586 List<CellInfo> allCellInfo = mTelephonyManager.getAllCellInfo(); in getNetworkScanRequestForTesting()
1489 android.hardware.radio.V1_0.CellInfo record = new android.hardware.radio.V1_0.CellInfo(); in testConvertHalCellInfoListForLTE()
1495 ArrayList<android.hardware.radio.V1_0.CellInfo> records = in testConvertHalCellInfoListForLTE()
1496 new ArrayList<android.hardware.radio.V1_0.CellInfo>(); in testConvertHalCellInfoListForLTE()
1499 ArrayList<CellInfo> ret = RIL.convertHalCellInfoList(records); in testConvertHalCellInfoListForLTE()
1513 expected.setCellConnectionStatus(CellInfo.CONNECTION_UNKNOWN); in testConvertHalCellInfoListForLTE()
1531 android.hardware.radio.V1_0.CellInfo record = new android.hardware.radio.V1_0.CellInfo(); in testConvertHalCellInfoListForGSM()
[all …]
/frameworks/base/telephony/java/com/android/internal/telephony/
DNetworkScanResult.java21 import android.telephony.CellInfo;
55 public List<CellInfo> networkInfos;
64 public NetworkScanResult(int scanStatus, int scanError, List<CellInfo> networkInfos) { in NetworkScanResult()
85 List<CellInfo> ni = new ArrayList<>(); in NetworkScanResult()

123