Searched refs:pci (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/telephony/java/android/telephony/ |
D | CellIdentityLte.java | 95 public CellIdentityLte(int mcc, int mnc, int ci, int pci, int tac) { in CellIdentityLte() argument 96 this(ci, pci, tac, CellInfo.UNAVAILABLE, new int[] {}, CellInfo.UNAVAILABLE, in CellIdentityLte() 117 public CellIdentityLte(int ci, int pci, int tac, int earfcn, @NonNull int[] bands, in CellIdentityLte() argument 124 mPci = inRangeOrUnavailable(pci, 0, MAX_PCI); in CellIdentityLte()
|
D | CellIdentityNr.java | 81 public CellIdentityNr(int pci, int tac, int nrArfcn, @NonNull @NgranBand int[] bands, in CellIdentityNr() argument 86 mPci = inRangeOrUnavailable(pci, 0, MAX_PCI); in CellIdentityNr()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | ServiceStateTrackerTest.java | 2303 private void sendPhyChanConfigChange(int[] bandwidths, int networkType, int pci, in sendPhyChanConfigChange() argument 2314 .setPhysicalCellId(pci) in sendPhyChanConfigChange() 2325 private void sendPhyChanConfigChange(int[] bandwidths, int networkType, int pci) { in sendPhyChanConfigChange() argument 2326 sendPhyChanConfigChange(bandwidths, networkType, pci, null); in sendPhyChanConfigChange()
|
D | RILTest.java | 1565 cellIdentity0.pci = PCI; in getCellIdentityLte_1_2() 2246 cellinfo.cellidentity.pci = PCI; in testConvertHalCellInfoList_1_4ForNr()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | ServiceStateTracker.java | 2603 int networkType, pci; in getPrimaryPhysicalChannelConfigForCell() local 2606 pci = ((CellIdentityLte) cellIdentity).getPci(); in getPrimaryPhysicalChannelConfigForCell() 2609 pci = ((CellIdentityNr) cellIdentity).getPci(); in getPrimaryPhysicalChannelConfigForCell() 2614 && pcc.getNetworkType() == networkType && pcc.getPhysicalCellId() == pci) { in getPrimaryPhysicalChannelConfigForCell()
|
D | RILUtils.java | 2694 return new CellIdentityLte(ci.base.ci, ci.base.pci, ci.base.tac, ci.base.earfcn, in convertHalCellIdentityLte() 2701 return new CellIdentityLte(ci.base.base.ci, ci.base.base.pci, ci.base.base.tac, in convertHalCellIdentityLte() 2718 return new CellIdentityLte(cid.ci, cid.pci, cid.tac, cid.earfcn, cid.bands, cid.bandwidth, in convertHalCellIdentityLte() 2810 return new CellIdentityNr(ci.pci, ci.tac, ci.nrarfcn, new int[] {}, ci.mcc, ci.mnc, in convertHalCellIdentityNr() 2816 return new CellIdentityNr(ci.base.pci, ci.base.tac, ci.base.nrarfcn, in convertHalCellIdentityNr() 2832 return new CellIdentityNr(cid.pci, cid.tac, cid.nrarfcn, cid.bands, cid.mcc, cid.mnc, in convertHalCellIdentityNr()
|