Home | History | Annotate | Download | only in telephony

Lines Matching refs:sid

1410                         // SID/NID/PRL is loaded. Poll service state
1499 private boolean isHomeSid(int sid) {
1502 if (sid == mHomeSystemId[i]) {
1585 String[] sid = sidStr.split(",");
1586 mHomeSystemId = new int[sid.length];
1587 for (int i = 0; i < sid.length; i++) {
1589 mHomeSystemId[i] = Integer.parseInt(sid[i]);
1595 if (DBG) log("CDMA_SUBSCRIPTION: SID=" + sidStr);
2937 int sid = mSS.getCdmaSystemId();
2938 operatorNumeric = fixUnknownMcc(operatorNumeric, sid);
3122 // SIM is found on the device. If ERI roaming is OFF, and SID/NID matches
3123 // one configured in SIM, use operator name from CSIM record. Note that ERI, SID,
3139 * Check whether the specified SID and NID pair appears in the HOME SID/NID list
3142 * @return true if provided sid/nid pair belongs to operator's home network.
3144 private boolean isInHomeSidNid(int sid, int nid) {
3145 // if SID/NID is not available, assume this is home network.
3148 // length of SID/NID shold be same
3151 if (sid == 0) return true;
3154 // Use SID only if NID is a reserved value.
3155 // SID 0 and NID 0 and 65535 are reserved. (C.0005 2.6.5.2)
3156 if ((mHomeSystemId[i] == sid) &&
3162 // SID/NID are not in the list. So device is not in home network
3185 private String fixUnknownMcc(String operatorNumeric, int sid) {
3186 if (sid <= 0) {
3191 // resolve the mcc from sid;
3194 // if the sid is conflict and timezone is unavailable, the mcc may be not right.
3221 int mcc = mHbpcdUtils.getMcc(sid, utcOffsetHours, (isDst ? 1 : 0), isNitzTimeZone);