Home
last modified time | relevance | path

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

/frameworks/base/telephony/java/android/telephony/
DCellIdentityWcdma.java73 public CellIdentityWcdma (int lac, int cid, int psc, int uarfcn, in CellIdentityWcdma() argument
78 mPsc = inRangeOrUnavailable(psc, 0, MAX_PSC); in CellIdentityWcdma()
84 this(cid.lac, cid.cid, cid.psc, cid.uarfcn, cid.mcc, cid.mnc, "", ""); in CellIdentityWcdma()
89 this(cid.base.lac, cid.base.cid, cid.base.psc, cid.base.uarfcn, in CellIdentityWcdma()
204 int psc = mPsc != CellInfo.UNAVAILABLE ? mPsc : -1; in asCellLocation() local
206 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.java1106 ProfileServiceConnections psc = mProfileServices.get(new Integer(bluetoothProfile)); in bindBluetoothProfileService() local
1107 if (psc == null) { in bindBluetoothProfileService()
1118 psc = new ProfileServiceConnections(intent); in bindBluetoothProfileService()
1119 if (!psc.bindService()) { in bindBluetoothProfileService()
1123 mProfileServices.put(new Integer(bluetoothProfile), psc); in bindBluetoothProfileService()
1140 ProfileServiceConnections psc = mProfileServices.get(profile); in unbindBluetoothProfileService() local
1141 if (psc == null) { in unbindBluetoothProfileService()
1144 psc.removeProxy(proxy); in unbindBluetoothProfileService()
1145 if (psc.isEmpty()) { in unbindBluetoothProfileService()
1148 mContext.unbindService(psc); in unbindBluetoothProfileService()
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DRILTest.java1238 cellinfo.cellIdentityWcdma.psc = PSC; in testConvertHalCellInfoListForWcdma()
1797 cellinfo.cellIdentityWcdma.base.psc = PSC; in getCellInfoListForWcdma()