Home | History | Annotate | Download | only in telephony

Lines Matching refs:sid

40      *  Resolves the unknown MCC with SID and Timezone information.
42 public int getMcc(int sid, int tz, int DSTflag, boolean isNitzTimeZone) {
45 // check if SID exists in arbitrary_mcc_sid_match table.
47 // be used by a specific operator, other operators having the same SID are
48 // not using it currently, if that SID is in this table, we don't need to
52 ArbitraryMccSidMatch.SID + "=" + sid, null, null);
74 // Then check if SID exists in mcc_sid_conflict table.
78 MccSidConflicts.SID_CONFLICT + "=" + sid + " and (((" +
88 Rlog.w(LOG_TAG, "something wrong, get more results for 1 conflict SID: " + c3);
90 if (DBG) Rlog.d(LOG_TAG, "Query conflict sid returned the cursor " + c3);
110 // if there is no conflict, then check if SID is in mcc_sid_range.
113 MccSidRange.RANGE_LOW + "<=" + sid + " and " +
114 MccSidRange.RANGE_HIGH + ">=" + sid,
121 if (DBG) Rlog.d(LOG_TAG, "SID found in mcc_sid_range. Return tmpMcc = " + tmpMcc);
127 if (DBG) Rlog.d(LOG_TAG, "SID NOT found in mcc_sid_range.");