Searched refs:mPsc (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/telephony/java/android/telephony/gsm/ |
D | GsmCellLocation.java | 28 private int mPsc; field in GsmCellLocation 36 mPsc = -1; in GsmCellLocation() 45 mPsc = bundle.getInt("psc", -1); in GsmCellLocation() 69 return mPsc; in getPsc() 79 mPsc = -1; in setStateInvalid() 95 mPsc = psc; in setPsc() 118 && equalsHandlesNulls(mPsc, s.mPsc); in equals() 123 return "["+ mLac + "," + mCid + "," + mPsc + "]"; in toString() 145 m.putInt("psc", mPsc); in fillInNotifierBundle() 152 return (mLac == -1 && mCid == -1 && mPsc == -1); in isEmpty()
|
/frameworks/base/telephony/java/android/telephony/ |
D | CellIdentityWcdma.java | 42 private final int mPsc; field in CellIdentityWcdma 54 mPsc = Integer.MAX_VALUE; in CellIdentityWcdma() 87 mPsc = psc; in CellIdentityWcdma() 96 mPsc = cid.mPsc; in CellIdentityWcdma() 138 return mPsc; in getPsc() 143 return Objects.hash(mMcc, mMnc, mLac, mCid, mPsc); in hashCode() 168 mPsc == o.mPsc && in equals() 179 sb.append(" mPsc=").append(mPsc); in toString() 200 dest.writeInt(mPsc); in writeToParcel() 210 mPsc = in.readInt(); in CellIdentityWcdma()
|
D | NeighboringCellInfo.java | 63 private int mPsc; field in NeighboringCellInfo 84 mPsc = UNKNOWN_CID; in NeighboringCellInfo() 117 mPsc = UNKNOWN_CID; in NeighboringCellInfo() 147 mPsc = Integer.parseInt(location, 16); in NeighboringCellInfo() 152 mPsc = UNKNOWN_CID; in NeighboringCellInfo() 166 mPsc = in.readInt(); in NeighboringCellInfo() 202 return mPsc; in getPsc() 264 if (mPsc != UNKNOWN_CID) { in toString() 265 sb.append(Integer.toHexString(mPsc)) in toString() 285 dest.writeInt(mPsc); in writeToParcel()
|