Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/storage/
DRecoverableKeyStoreDb.java101 values.put(KeysEntry.COLUMN_NAME_UID, uid); in insertKey()
132 KeysEntry.COLUMN_NAME_UID + " = ? AND " in getKey()
187 String selection = KeysEntry.COLUMN_NAME_UID + " = ? AND " + in removeKey()
209 KeysEntry.COLUMN_NAME_UID + " = ?"; in getStatusForAllKeys()
247 KeysEntry.COLUMN_NAME_UID + " = ? AND " in setRecoveryStatus()
277 + KeysEntry.COLUMN_NAME_UID + " = ? AND " in getAllKeys()
604 String[] projection = { RecoveryServiceMetadataEntry.COLUMN_NAME_UID }; in getRecoveryAgents()
622 cursor.getColumnIndexOrThrow(RecoveryServiceMetadataEntry.COLUMN_NAME_UID)); in getRecoveryAgents()
677 + RecoveryServiceMetadataEntry.COLUMN_NAME_UID + " = ?"; in setRecoverySecretTypes()
698 RecoveryServiceMetadataEntry.COLUMN_NAME_UID, in getRecoverySecretTypes()
[all …]
DRecoverableKeyStoreDbContract.java41 static final String COLUMN_NAME_UID = "uid"; field in RecoverableKeyStoreDbContract.KeysEntry
122 static final String COLUMN_NAME_UID = "uid"; field in RecoverableKeyStoreDbContract.RecoveryServiceMetadataEntry
187 static final String COLUMN_NAME_UID = "uid"; field in RecoverableKeyStoreDbContract.RootOfTrustEntry
DRecoverableKeyStoreDbHelper.java45 + KeysEntry.COLUMN_NAME_UID + " INTEGER,"
53 + "UNIQUE(" + KeysEntry.COLUMN_NAME_UID + ","
77 + RecoveryServiceMetadataEntry.COLUMN_NAME_UID + " INTEGER,"
89 + RecoveryServiceMetadataEntry.COLUMN_NAME_UID + "))";
95 + RootOfTrustEntry.COLUMN_NAME_UID + " INTEGER,"
101 + RootOfTrustEntry.COLUMN_NAME_UID + ","
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/storage/
DRecoverableKeyStoreDbHelperTest.java70 + KeysEntry.COLUMN_NAME_UID + " INTEGER,"
77 + "UNIQUE(" + KeysEntry.COLUMN_NAME_UID + ","
90 + RecoveryServiceMetadataEntry.COLUMN_NAME_UID + " INTEGER,"
99 + RecoveryServiceMetadataEntry.COLUMN_NAME_UID + "))";
177 values.put(RootOfTrustEntry.COLUMN_NAME_UID, TEST_UID); in isRootOfTrustTableAvailable()
189 values.put(KeysEntry.COLUMN_NAME_UID, TEST_UID); in checkAllColumns_v4()
211 values.put(RecoveryServiceMetadataEntry.COLUMN_NAME_UID, TEST_UID); in checkAllColumns_v4()
238 values.put(KeysEntry.COLUMN_NAME_UID, TEST_UID); in checkAllColumns_latest()