Home
last modified time | relevance | path

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

/frameworks/base/telephony/java/android/telephony/
DCellIdentityWcdma.java91 public CellIdentityWcdma(int lac, int cid, int psc, int uarfcn, @Nullable String mccStr, in CellIdentityWcdma() argument
98 mPsc = inRangeOrUnavailable(psc, 0, MAX_PSC); in CellIdentityWcdma()
112 this(cid.lac, cid.cid, cid.psc, cid.uarfcn, cid.mcc, cid.mnc, "", "", in CellIdentityWcdma()
118 this(cid.base.lac, cid.base.cid, cid.base.psc, cid.base.uarfcn, in CellIdentityWcdma()
125 this(cid.base.base.lac, cid.base.base.cid, cid.base.base.psc, cid.base.base.uarfcn, in CellIdentityWcdma()
274 int psc = mPsc != CellInfo.UNAVAILABLE ? mPsc : -1; in asCellLocation() local
276 cl.setPsc(psc); in asCellLocation()
/frameworks/base/telephony/java/android/telephony/gsm/
DGsmCellLocation.java100 public void setPsc(int psc) { in setPsc() argument
101 mPsc = psc; in setPsc()
/frameworks/base/services/core/java/com/android/server/
DBluetoothManagerService.java1344 ProfileServiceConnections psc = mProfileServices.get(new Integer(bluetoothProfile)); in bindBluetoothProfileService() local
1345 if (psc == null) { in bindBluetoothProfileService()
1356 psc = new ProfileServiceConnections(intent); in bindBluetoothProfileService()
1357 if (!psc.bindService()) { in bindBluetoothProfileService()
1361 mProfileServices.put(new Integer(bluetoothProfile), psc); in bindBluetoothProfileService()
1378 ProfileServiceConnections psc = mProfileServices.get(profile); in unbindBluetoothProfileService() local
1379 if (psc == null) { in unbindBluetoothProfileService()
1382 psc.removeProxy(proxy); in unbindBluetoothProfileService()
1383 if (psc.isEmpty()) { in unbindBluetoothProfileService()
1386 mContext.unbindService(psc); in unbindBluetoothProfileService()
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DRILTest.java1566 cellinfo.cellIdentityWcdma.psc = PSC; in testConvertHalCellInfoListForWcdma()
2541 cid.base.psc = PSC; in initializeCellIdentityWcdma_1_2()