Searched defs:mPsc (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/telephony/java/android/telephony/
H A DNeighboringCellInfo.java63 private int mPsc; field in class:NeighboringCellInfo
84 mPsc = UNKNOWN_CID;
117 mPsc = UNKNOWN_CID;
147 mPsc = Integer.parseInt(location, 16);
152 mPsc = UNKNOWN_CID;
166 mPsc = in.readInt();
202 return mPsc;
264 if (mPsc != UNKNOWN_CID) {
265 sb.append(Integer.toHexString(mPsc))
285 dest.writeInt(mPsc);
[all...]
H A DCellIdentityWcdma.java42 private final int mPsc; field in class:CellIdentityWcdma
54 mPsc = Integer.MAX_VALUE;
87 mPsc = psc;
96 mPsc = cid.mPsc;
138 return mPsc;
143 return Objects.hash(mMcc, mMnc, mLac, mCid, mPsc);
168 mPsc == o.mPsc &&
179 sb.append(" mPsc
[all...]
/frameworks/base/telephony/java/android/telephony/gsm/
H A DGsmCellLocation.java28 private int mPsc; field in class:GsmCellLocation
36 mPsc = -1;
45 mPsc = bundle.getInt("psc", -1);
69 return mPsc;
79 mPsc = -1;
95 mPsc = psc;
118 && equalsHandlesNulls(mPsc, s.mPsc);
123 return "["+ mLac + "," + mCid + "," + mPsc + "]";
145 m.putInt("psc", mPsc);
[all...]

Completed in 152 milliseconds