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.java74 Cursor findCursor = null; in getCarrierInfoForImsiEncryption() local
82 findCursor = mContentResolver.query(Telephony.CarrierColumns.CONTENT_URI, columns, in getCarrierInfoForImsiEncryption()
85 if (findCursor == null || !findCursor.moveToFirst()) { in getCarrierInfoForImsiEncryption()
89 if (findCursor.getCount() > 1) { in getCarrierInfoForImsiEncryption()
92 byte[] carrier_key = findCursor.getBlob(0); in getCarrierInfoForImsiEncryption()
93 Date expirationTime = new Date(findCursor.getLong(1)); in getCarrierInfoForImsiEncryption()
94 String keyIdentifier = findCursor.getString(2); in getCarrierInfoForImsiEncryption()
102 if (findCursor != null) { in getCarrierInfoForImsiEncryption()
103 findCursor.close(); in getCarrierInfoForImsiEncryption()