Home
last modified time | relevance | path

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

/aosp12/packages/apps/Settings/src/com/android/settings/network/telephony/
H A DNetworkOperatorPreference.java64 public NetworkOperatorPreference(Context context, CellInfo cellinfo, in NetworkOperatorPreference() argument
67 updateCell(cellinfo); in NetworkOperatorPreference()
88 public void updateCell(CellInfo cellinfo) { in updateCell() argument
89 updateCell(cellinfo, CellInfoUtil.getCellIdentity(cellinfo)); in updateCell()
92 private void updateCell(CellInfo cellinfo, CellIdentity cellId) { in updateCell() argument
93 mCellInfo = cellinfo; in updateCell()
101 public boolean isSameCell(CellInfo cellinfo) { in isSameCell() argument
102 if (cellinfo == null) { in isSameCell()
105 return mCellId.equals(CellInfoUtil.getCellIdentity(cellinfo)); in isSameCell()
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DRILTest.java1536 record.gsm.add(cellinfo); in testConvertHalCellInfoListForGSM()
1577 record.wcdma.add(cellinfo); in testConvertHalCellInfoListForWcdma()
1627 record.tdscdma.add(cellinfo); in testConvertHalCellInfoListForTdscdma()
1670 record.cdma.add(cellinfo); in testConvertHalCellInfoListForCdma()
1940 cellinfo.cellidentity.nci = CI; in testConvertHalCellInfoList_1_4ForNr()
1941 cellinfo.cellidentity.pci = PCI; in testConvertHalCellInfoList_1_4ForNr()
1942 cellinfo.cellidentity.tac = TAC; in testConvertHalCellInfoList_1_4ForNr()
1956 record.info.nr(cellinfo); in testConvertHalCellInfoList_1_4ForNr()
2522 record.gsm.add(cellinfo); in getCellInfoListForGSM()
2565 record.wcdma.add(cellinfo); in getCellInfoListForWcdma()
[all …]
/aosp12/packages/services/Telephony/src/com/android/phone/settings/
H A DRadioInfo.java490 mCellInfo = (TextView) findViewById(R.id.cellinfo); in onCreate()