Searched refs:psc (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/telephony/java/android/telephony/ |
D | CellIdentityWcdma.java | 61 public CellIdentityWcdma (int mcc, int mnc, int lac, int cid, int psc) { in CellIdentityWcdma() argument 62 this(lac, cid, psc, Integer.MAX_VALUE, String.valueOf(mcc), String.valueOf(mnc), in CellIdentityWcdma() 77 public CellIdentityWcdma (int mcc, int mnc, int lac, int cid, int psc, int uarfcn) { in CellIdentityWcdma() argument 78 this(lac, cid, psc, uarfcn, String.valueOf(mcc), String.valueOf(mnc), null, null); in CellIdentityWcdma() 94 public CellIdentityWcdma (int lac, int cid, int psc, int uarfcn, in CellIdentityWcdma() argument 99 mPsc = psc; in CellIdentityWcdma()
|
/frameworks/base/telephony/java/android/telephony/gsm/ |
D | GsmCellLocation.java | 94 public void setPsc(int psc) { in setPsc() argument 95 mPsc = psc; in setPsc()
|
/frameworks/base/services/core/java/com/android/server/ |
D | BluetoothManagerService.java | 1037 ProfileServiceConnections psc = mProfileServices.get(new Integer(bluetoothProfile)); in bindBluetoothProfileService() local 1038 if (psc == null) { in bindBluetoothProfileService() 1049 psc = new ProfileServiceConnections(intent); in bindBluetoothProfileService() 1050 if (!psc.bindService()) { in bindBluetoothProfileService() 1054 mProfileServices.put(new Integer(bluetoothProfile), psc); in bindBluetoothProfileService() 1070 ProfileServiceConnections psc = mProfileServices.get(new Integer(bluetoothProfile)); in unbindBluetoothProfileService() local 1071 if (psc == null) { in unbindBluetoothProfileService() 1074 psc.removeProxy(proxy); in unbindBluetoothProfileService() 1081 ProfileServiceConnections psc = mProfileServices.get(i); in unbindAllBluetoothProfileServices() local 1083 mContext.unbindService(psc); in unbindAllBluetoothProfileServices() [all …]
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | CellularNetworkService.java | 322 cellIdentityWcdma.psc, cellIdentityWcdma.uarfcn, in convertHalCellIdentityToCellIdentity() 400 cellIdentityWcdma.base.psc, in convertHalCellIdentityToCellIdentity()
|
D | ServiceStateTracker.java | 908 int psc = -1; in processCellLocationInfo() local 921 psc = ((CellIdentityWcdma) cellIdentity).getPsc(); in processCellLocationInfo() 941 ((GsmCellLocation) cellLocation).setPsc(psc); in processCellLocationInfo()
|
D | RIL.java | 5274 Parcel p, int lac, int cid, int psc, int uarfcn, String mcc, String mnc, in writeToParcelForWcdma() argument 5283 p.writeInt(psc); in writeToParcelForWcdma() 5373 cellInfoWcdma.cellIdentityWcdma.psc, in convertHalCellInfoList() 5481 cellInfoWcdma.cellIdentityWcdma.base.psc, in convertHalCellInfoList_1_2()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | RILTest.java | 1161 cellinfo.cellIdentityWcdma.psc = PSC; in testConvertHalCellInfoListForWcdma() 1559 cellinfo.cellIdentityWcdma.base.psc = PSC; in getCellInfoListForWcdma()
|