Home
last modified time | relevance | path

Searched refs:psc (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/telephony/java/android/telephony/
DCellIdentityWcdma.java89 public CellIdentityWcdma(int lac, int cid, int psc, int uarfcn, @Nullable String mccStr, in CellIdentityWcdma() argument
96 mPsc = inRangeOrUnavailable(psc, 0, MAX_PSC); in CellIdentityWcdma()
110 this(cid.lac, cid.cid, cid.psc, cid.uarfcn, cid.mcc, cid.mnc, "", "", in CellIdentityWcdma()
116 this(cid.base.lac, cid.base.cid, cid.base.psc, cid.base.uarfcn, in CellIdentityWcdma()
123 this(cid.base.base.lac, cid.base.base.cid, cid.base.base.psc, cid.base.base.uarfcn, in CellIdentityWcdma()
272 int psc = mPsc != CellInfo.UNAVAILABLE ? mPsc : -1; in asCellLocation() local
274 cl.setPsc(psc); in asCellLocation()
/frameworks/base/telephony/java/android/telephony/gsm/
DGsmCellLocation.java97 public void setPsc(int psc) { in setPsc() argument
98 mPsc = psc; in setPsc()
/frameworks/base/services/core/java/com/android/server/
DBluetoothManagerService.java1233 ProfileServiceConnections psc = mProfileServices.get(new Integer(bluetoothProfile)); in bindBluetoothProfileService() local
1234 if (psc == null) { in bindBluetoothProfileService()
1245 psc = new ProfileServiceConnections(intent); in bindBluetoothProfileService()
1246 if (!psc.bindService()) { in bindBluetoothProfileService()
1250 mProfileServices.put(new Integer(bluetoothProfile), psc); in bindBluetoothProfileService()
1267 ProfileServiceConnections psc = mProfileServices.get(profile); in unbindBluetoothProfileService() local
1268 if (psc == null) { in unbindBluetoothProfileService()
1271 psc.removeProxy(proxy); in unbindBluetoothProfileService()
1272 if (psc.isEmpty()) { in unbindBluetoothProfileService()
1275 mContext.unbindService(psc); in unbindBluetoothProfileService()
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DRILTest.java1417 cellinfo.cellIdentityWcdma.psc = PSC; in testConvertHalCellInfoListForWcdma()
2261 cid.base.psc = PSC; in initializeCellIdentityWcdma_1_2()