Searched refs:KeysEntry (Results 1 – 4 of 4) sorted by relevance
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/storage/ |
H A D | RecoverableKeyStoreDbHelperTest.java | 67 "CREATE TABLE " + KeysEntry.TABLE_NAME + "( " 68 + KeysEntry._ID + " INTEGER PRIMARY KEY," 70 + KeysEntry.COLUMN_NAME_UID + " INTEGER," 71 + KeysEntry.COLUMN_NAME_ALIAS + " TEXT," 72 + KeysEntry.COLUMN_NAME_NONCE + " BLOB," 78 + KeysEntry.COLUMN_NAME_ALIAS + "))"; 189 values.put(KeysEntry.COLUMN_NAME_UID, TEST_UID); in checkAllColumns_v4() 190 values.put(KeysEntry.COLUMN_NAME_ALIAS, TEST_ALIAS); in checkAllColumns_v4() 191 values.put(KeysEntry.COLUMN_NAME_NONCE, TEST_NONCE); in checkAllColumns_v4() 238 values.put(KeysEntry.COLUMN_NAME_UID, TEST_UID); in checkAllColumns_latest() [all …]
|
/aosp14/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/storage/ |
H A D | RecoverableKeyStoreDbHelper.java | 42 "CREATE TABLE " + KeysEntry.TABLE_NAME + "( " 43 + KeysEntry._ID + " INTEGER PRIMARY KEY," 44 + KeysEntry.COLUMN_NAME_USER_ID + " INTEGER," 45 + KeysEntry.COLUMN_NAME_UID + " INTEGER," 46 + KeysEntry.COLUMN_NAME_ALIAS + " TEXT," 47 + KeysEntry.COLUMN_NAME_NONCE + " BLOB," 48 + KeysEntry.COLUMN_NAME_WRAPPED_KEY + " BLOB," 53 + "UNIQUE(" + KeysEntry.COLUMN_NAME_UID + "," 54 + KeysEntry.COLUMN_NAME_ALIAS + "))"; 105 "DROP TABLE IF EXISTS " + KeysEntry.TABLE_NAME; [all …]
|
H A D | RecoverableKeyStoreDb.java | 125 KeysEntry._ID, in getKey() 126 KeysEntry.COLUMN_NAME_NONCE, in getKey() 127 KeysEntry.COLUMN_NAME_WRAPPED_KEY, in getKey() 138 KeysEntry.TABLE_NAME, in getKey() 205 KeysEntry._ID, in getStatusForAllKeys() 206 KeysEntry.COLUMN_NAME_ALIAS, in getStatusForAllKeys() 214 KeysEntry.TABLE_NAME, in getStatusForAllKeys() 269 KeysEntry._ID, in getAllKeys() 270 KeysEntry.COLUMN_NAME_NONCE, in getAllKeys() 272 KeysEntry.COLUMN_NAME_ALIAS, in getAllKeys() [all …]
|
H A D | RecoverableKeyStoreDbContract.java | 30 static class KeysEntry implements BaseColumns { class in RecoverableKeyStoreDbContract
|