Home
last modified time | relevance | path

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

/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DGsmCdmaPhone.java4303 IccRecords curIccRecords = null; in getOperatorNumeric() local
4311 curIccRecords = mIccRecords.get(); in getOperatorNumeric()
4314 curIccRecords = mSimRecords; in getOperatorNumeric()
4316 if (curIccRecords != null && curIccRecords == mSimRecords) { in getOperatorNumeric()
4317 operatorNumeric = curIccRecords.getOperatorNumeric(); in getOperatorNumeric()
4319 curIccRecords = mIccRecords.get(); in getOperatorNumeric()
4320 if (curIccRecords != null && (curIccRecords instanceof RuimRecords)) { in getOperatorNumeric()
4321 RuimRecords csim = (RuimRecords) curIccRecords; in getOperatorNumeric()
4329 " mIccRecords = " + ((curIccRecords != null) ? in getOperatorNumeric()
4330 curIccRecords.getRecordsLoaded() : null)); in getOperatorNumeric()