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.java84 Cursor findCursor = null; in getCarrierInfoForImsiEncryption() local
92 findCursor = mContentResolver.query(Telephony.CarrierColumns.CONTENT_URI, columns, in getCarrierInfoForImsiEncryption()
95 if (findCursor == null || !findCursor.moveToFirst()) { in getCarrierInfoForImsiEncryption()
146 if (findCursor.getCount() > 1) { in getCarrierInfoForImsiEncryption()
149 byte[] carrier_key = findCursor.getBlob(0); in getCarrierInfoForImsiEncryption()
150 Date expirationTime = new Date(findCursor.getLong(1)); in getCarrierInfoForImsiEncryption()
151 String keyIdentifier = findCursor.getString(2); in getCarrierInfoForImsiEncryption()
159 if (findCursor != null) { in getCarrierInfoForImsiEncryption()
160 findCursor.close(); in getCarrierInfoForImsiEncryption()