Home | History | Annotate | Download | only in util

Lines Matching refs:mnc

123      * Get the MCC and MNC in integer of the SIM's provider
125 * @return an array of two ints, [0] is the MCC code and [1] is the MNC code
130 * Get the mcc/mnc string
302 int mnc = 0;
305 mnc = Integer.parseInt(mccmnc.substring(3));
309 return new int[]{mcc, mnc};
465 int mnc = 0;
469 mnc = subInfo.getMnc();
471 return new int[]{mcc, mnc};
962 public static String canonicalizeMccMnc(final String mcc, final String mnc) {
964 return String.format("%03d%03d", Integer.parseInt(mcc), Integer.parseInt(mnc));
967 LogUtil.w(TAG, "canonicalizeMccMnc: invalid mccmnc:" + mcc + " ," + mnc);
969 return mcc + mnc;