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()
556 String[] projection = { RecoveryServiceMetadataEntry.COLUMN_NAME_UID }; in getRecoveryAgents()
574 cursor.getColumnIndexOrThrow(RecoveryServiceMetadataEntry.COLUMN_NAME_UID)); in getRecoveryAgents()
629 + RecoveryServiceMetadataEntry.COLUMN_NAME_UID + " = ?"; in setRecoverySecretTypes()
650 RecoveryServiceMetadataEntry.COLUMN_NAME_UID, in getRecoverySecretTypes()
[all …]
DRecoverableKeyStoreDbHelper.java42 + KeysEntry.COLUMN_NAME_UID + " INTEGER,"
50 + "UNIQUE(" + KeysEntry.COLUMN_NAME_UID + ","
64 + RecoveryServiceMetadataEntry.COLUMN_NAME_UID + " INTEGER,"
76 + RecoveryServiceMetadataEntry.COLUMN_NAME_UID + "))";
82 + RootOfTrustEntry.COLUMN_NAME_UID + " INTEGER,"
88 + RootOfTrustEntry.COLUMN_NAME_UID + ","
DRecoverableKeyStoreDbContract.java41 static final String COLUMN_NAME_UID = "uid"; field in RecoverableKeyStoreDbContract.KeysEntry
117 static final String COLUMN_NAME_UID = "uid"; field in RecoverableKeyStoreDbContract.RecoveryServiceMetadataEntry
182 static final String COLUMN_NAME_UID = "uid"; field in RecoverableKeyStoreDbContract.RootOfTrustEntry
/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 + "))";
164 values.put(RootOfTrustEntry.COLUMN_NAME_UID, TEST_UID); in isRootOfTrustTableAvailable()
176 values.put(KeysEntry.COLUMN_NAME_UID, TEST_UID); in checkAllColumns_v4()
198 values.put(RecoveryServiceMetadataEntry.COLUMN_NAME_UID, TEST_UID); in checkAllColumns_v4()
225 values.put(KeysEntry.COLUMN_NAME_UID, TEST_UID); in checkAllColumns_latest()