HomeSort by relevance Sort by last modified time
    Searched refs:MCC (Results 1 - 15 of 15) sorted by null

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
HbpcdLookup.java 48 public static final String DEFAULT_SORT_ORDER = "MCC ASC";
50 public static final String MCC = "MCC";
61 public static final String DEFAULT_SORT_ORDER = "MCC ASC";
63 public static final String MCC = "MCC";
81 public static final String DEFAULT_SORT_ORDER = "MCC ASC";
83 public static final String MCC = "MCC";
94 public static final String DEFAULT_SORT_ORDER = "MCC ASC"
    [all...]
HbpcdUtils.java 41 * Resolves the unknown MCC with SID and Timezone information.
51 String projection2[] = {ArbitraryMccSidMatch.MCC};
67 Log.d(LOG_TAG, "MCC found in arbitrary_mcc_sid_match: " + tmpMcc);
76 // and use the timezone in mcc_lookup table to check which MCC matches.
77 String projection3[] = {MccSidConflicts.MCC};
95 "MCC found in mcc_lookup_table. Return tmpMcc = " + tmpMcc);
100 // time zone is not accurate, it may get wrong mcc, ignore it.
101 if (DBG) Log.d(LOG_TAG, "time zone is not accurate, mcc may be "
109 String projection5[] = {MccSidRange.MCC};
128 // If unknown MCC still could not be resolved
    [all...]
SmsNumberUtils.java 119 * @param activeMcc current network's mcc
237 * @param mcc current network's country code
241 private static ArrayList<String> getAllIDDs(Context context, String mcc) {
242 ArrayList<String> allIDDs = IDDS_MAPS.get(mcc);
249 String projection[] = {MccIdd.IDD, MccIdd.MCC};
252 // if mcc is null : return all rows
253 // if mcc is empty-string : return those rows whose mcc is emptry-string
255 if (mcc != null) {
256 where = MccIdd.MCC + "=?"
    [all...]
SubscriptionController.java 269 int mcc = cursor.getInt(cursor.getColumnIndexOrThrow( local
270 SubscriptionManager.MCC));
280 + " mcc:" + mcc + " mnc:" + mnc + " countIso:" + countryIso);
289 nameSource, iconTint, number, dataRoaming, iconBitmap, mcc, mnc, countryIso);
921 int mcc = 0; local
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
HbpcdLookupProvider.java 99 sIddProjectionMap.put(MccIdd.MCC, MccIdd.MCC);
104 sLookupProjectionMap.put(MccLookup.MCC, MccLookup.MCC);
116 // MccLookup.MCC is duped to MccSidConflicts.MCC
125 sConflictProjectionMap.put(MccSidConflicts.MCC,
126 TABLE_MCC_SID_CONFLICT + "." + MccSidConflicts.MCC);
132 sRangeProjectionMap.put(MccSidRange.MCC, MccSidRange.MCC);
    [all...]
HbpcdLookupDatabaseHelper.java 24 * to get right MCC part of numeric, MNC part of numeric has no way to get in this
25 * case, but for HBPCD, the MCC is enough.
28 * This table has country name, country code, time zones for each MCC
31 * This table has the IDDs for each MCC, some countries have multiple IDDs.
34 * This table are SIDs assigned to each MCC
37 * This table shows those SIDs are assigned to more than 1 MCC entry,
38 * if the SID is here, it means the SID couldn't be matched to a single MCC,
40 * right MCC.
43 * The SID listed in this table technically have operators in multiple MCC,
44 * but conveniently only have *active* operators in a single MCC allowing
    [all...]
TelephonyProvider.java 202 + SubscriptionManager.MCC + " INTEGER DEFAULT 0,"
215 "mcc TEXT," +
389 " ADD COLUMN " + SubscriptionManager.MCC + " INTEGER DEFAULT 0;");
431 String mcc = parser.getAttributeValue(null, "mcc"); local
433 String numeric = mcc + mnc;
436 map.put(Telephony.Carriers.MCC, mcc);
    [all...]
  /cts/tests/tests/content/src/android/content/res/cts/
ConfigTest.java 42 MCC,
100 case MCC:
101 mConfig.mcc = value;
200 config.setProperty(Properties.MCC, 310);
261 config.setProperty(Properties.MCC, 111);
465 config.setProperty(Properties.MCC, 111);
    [all...]
  /packages/apps/Settings/src/com/android/settings/
ApnEditor.java 115 Telephony.Carriers.MCC, // 9
270 // MCC is first 3 chars and then in 2 - 3 chars of MNC
273 String mcc = numeric.substring(0, 3); local
276 // Auto populate MNC and MCC for new entries, based on what SIM reports
277 mMcc.setText(mcc);
280 mCurMcc = mcc;
518 String mcc = checkNotSet(mMcc.getText()); local
564 values.put(Telephony.Carriers.MCC, mcc);
567 values.put(Telephony.Carriers.NUMERIC, mcc + mnc)
594 String mcc = checkNotSet(mMcc.getText()); local
    [all...]
  /frameworks/base/telephony/java/android/telephony/
SubscriptionManager.java 239 * TelephonyProvider column name for the MCC associated with a SIM.
243 public static final String MCC = "mcc";
    [all...]
  /frameworks/opt/telephony/src/java/android/provider/
Telephony.java     [all...]
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 464 milliseconds