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