Home
last modified time | relevance | path

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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCarrierInfoManager.java86 Cursor findCursor = null; in getCarrierInfoForImsiEncryption() local
95 findCursor = mContentResolver.query(Telephony.CarrierColumns.CONTENT_URI, columns, in getCarrierInfoForImsiEncryption()
98 if (findCursor == null || !findCursor.moveToFirst()) { in getCarrierInfoForImsiEncryption()
149 if (findCursor.getCount() > 1) { in getCarrierInfoForImsiEncryption()
153 while (findCursor.moveToNext()) { in getCarrierInfoForImsiEncryption()
154 carrierIdStr = findCursor.getString(3); in getCarrierInfoForImsiEncryption()
160 return getImsiEncryptionInfo(findCursor, mcc, mnc, keyType, in getCarrierInfoForImsiEncryption()
164 findCursor.moveToFirst(); in getCarrierInfoForImsiEncryption()
166 String carrierIdStr = findCursor.getString(3); in getCarrierInfoForImsiEncryption()
169 return getImsiEncryptionInfo(findCursor, mcc, mnc, keyType, cursorCarrierId); in getCarrierInfoForImsiEncryption()
[all …]