Searched refs:simOperator (Results 1 – 4 of 4) sorted by relevance
279 String simOperator = telephonyManager.getSimOperator(); in deleteCarrierInfoForImsiEncryption() local280 if (!TextUtils.isEmpty(simOperator)) { in deleteCarrierInfoForImsiEncryption()281 mcc = simOperator.substring(0, 3); in deleteCarrierInfoForImsiEncryption()282 mnc = simOperator.substring(3); in deleteCarrierInfoForImsiEncryption()284 Log.e(LOG_TAG, "Invalid networkOperator: " + simOperator); in deleteCarrierInfoForImsiEncryption()
1083 String simOperator; in hasEmsSupport() local1087 simOperator = TelephonyManager.getDefault().getSimOperatorNumeric(); in hasEmsSupport()1093 if (!TextUtils.isEmpty(simOperator)) { in hasEmsSupport()1095 if (simOperator.startsWith(currentConfig.mOperatorNumber) && in hasEmsSupport()1115 String simOperator; in shouldAppendPageNumberAsPrefix() local1119 simOperator = TelephonyManager.getDefault().getSimOperatorNumeric(); in shouldAppendPageNumberAsPrefix()1126 if (simOperator.startsWith(currentConfig.mOperatorNumber) && in shouldAppendPageNumberAsPrefix()
874 String simOperator = TelephonyManager.from(mContext).getSimOperatorNumericForPhone(phoneId); in getCarrierIdentifierForPhoneId() local878 if (simOperator != null && simOperator.length() >= 3) { in getCarrierIdentifierForPhoneId()879 mcc = simOperator.substring(0, 3); in getCarrierIdentifierForPhoneId()880 mnc = simOperator.substring(3); in getCarrierIdentifierForPhoneId()
4911 String simOperator = telephonyManager.getSimOperator(); in getWhereClauseForRestoreDefaultApn() local4913 NUMERIC + "='" + simOperator + "'", null, null, null, DEFAULT_SORT_ORDER); in getWhereClauseForRestoreDefaultApn()4922 && telephonyManager.matchesCurrentSimOperator(simOperator, in getWhereClauseForRestoreDefaultApn()4924 where = NUMERIC + "='" + simOperator + "'" in getWhereClauseForRestoreDefaultApn()4935 where = NUMERIC + "='" + simOperator + "'" in getWhereClauseForRestoreDefaultApn()