Home
last modified time | relevance | path

Searched refs:operatorNumeric (Results 1 – 7 of 7) sorted by relevance

/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/network/telephony/
DCellInfoUtil.java137 String operatorNumeric = operatorInfo.getOperatorNumeric(); in convertOperatorInfoToCellInfo() local
140 if (operatorNumeric != null && operatorNumeric.matches("^[0-9]{5,6}$")) { in convertOperatorInfoToCellInfo()
141 mcc = operatorNumeric.substring(0, 3); in convertOperatorInfoToCellInfo()
142 mnc = operatorNumeric.substring(3); in convertOperatorInfoToCellInfo()
DMobileNetworkUtils.java396 String operatorNumeric = telephonyManager.getServiceState().getOperatorNumeric(); in isTdscdmaSupported() local
399 if (numericArray == null || operatorNumeric == null) { in isTdscdmaSupported()
403 if (operatorNumeric.equals(numeric)) { in isTdscdmaSupported()
/packages/services/Telephony/src/com/android/phone/
DCellInfoUtil.java137 String operatorNumeric = operatorInfo.getOperatorNumeric(); in convertOperatorInfoToCellInfo() local
140 if (operatorNumeric != null && operatorNumeric.matches("^[0-9]{5,6}$")) { in convertOperatorInfoToCellInfo()
141 mcc = operatorNumeric.substring(0, 3); in convertOperatorInfoToCellInfo()
142 mnc = operatorNumeric.substring(3); in convertOperatorInfoToCellInfo()
DNetworkQueryService.java381 String operatorNumeric = oi.getOperatorNumeric(); in getCellInfoList() local
384 log("operatorNumeric: " + operatorNumeric); in getCellInfoList()
385 if (operatorNumeric != null && operatorNumeric.matches("^[0-9]{5,6}$")) { in getCellInfoList()
386 mcc = operatorNumeric.substring(0, 3); in getCellInfoList()
387 mnc = operatorNumeric.substring(3); in getCellInfoList()
DMobileNetworkSettings.java2143 String operatorNumeric = mTelephonyManager.getServiceState().getOperatorNumeric(); in isSupportTdscdma() local
2146 if (numericArray.length == 0 || operatorNumeric == null) { in isSupportTdscdma()
2150 if (operatorNumeric.equals(numeric)) { in isSupportTdscdma()
/packages/apps/Settings/src/com/android/settings/network/telephony/
DCellInfoUtil.java138 String operatorNumeric = operatorInfo.getOperatorNumeric(); in convertOperatorInfoToCellInfo() local
141 if (operatorNumeric != null && operatorNumeric.matches("^[0-9]{5,6}$")) { in convertOperatorInfoToCellInfo()
142 mcc = operatorNumeric.substring(0, 3); in convertOperatorInfoToCellInfo()
143 mnc = operatorNumeric.substring(3); in convertOperatorInfoToCellInfo()
DMobileNetworkUtils.java421 String operatorNumeric = telephonyManager.getServiceState().getOperatorNumeric(); in isTdscdmaSupported() local
424 if (numericArray == null || operatorNumeric == null) { in isTdscdmaSupported()
428 if (operatorNumeric.equals(numeric)) { in isTdscdmaSupported()