Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/storage/
H A DRecoverableKeyStoreDbHelper.java92 "CREATE TABLE " + RootOfTrustEntry.TABLE_NAME + " ("
93 + RootOfTrustEntry._ID + " INTEGER PRIMARY KEY,"
94 + RootOfTrustEntry.COLUMN_NAME_USER_ID + " INTEGER,"
95 + RootOfTrustEntry.COLUMN_NAME_UID + " INTEGER,"
96 + RootOfTrustEntry.COLUMN_NAME_ROOT_ALIAS + " TEXT,"
97 + RootOfTrustEntry.COLUMN_NAME_CERT_PATH + " BLOB,"
98 + RootOfTrustEntry.COLUMN_NAME_CERT_SERIAL + " INTEGER,"
100 + RootOfTrustEntry.COLUMN_NAME_USER_ID + ","
101 + RootOfTrustEntry.COLUMN_NAME_UID + ","
102 + RootOfTrustEntry.COLUMN_NAME_ROOT_ALIAS + "))";
[all …]
H A DRecoverableKeyStoreDb.java1134 RootOfTrustEntry._ID, in getBytes()
1135 RootOfTrustEntry.COLUMN_NAME_USER_ID, in getBytes()
1136 RootOfTrustEntry.COLUMN_NAME_UID, in getBytes()
1137 RootOfTrustEntry.COLUMN_NAME_ROOT_ALIAS, in getBytes()
1147 RootOfTrustEntry.TABLE_NAME, in getBytes()
1220 RootOfTrustEntry._ID, in getLong()
1221 RootOfTrustEntry.COLUMN_NAME_USER_ID, in getLong()
1222 RootOfTrustEntry.COLUMN_NAME_UID, in getLong()
1223 RootOfTrustEntry.COLUMN_NAME_ROOT_ALIAS, in getLong()
1233 RootOfTrustEntry.TABLE_NAME, in getLong()
[all …]
H A DRecoverableKeyStoreDbContract.java176 static class RootOfTrustEntry implements BaseColumns { class in RecoverableKeyStoreDbContract
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/storage/
H A DRecoverableKeyStoreDbHelperTest.java31 …oid.server.locksettings.recoverablekeystore.storage.RecoverableKeyStoreDbContract.RootOfTrustEntry;
176 values.put(RootOfTrustEntry.COLUMN_NAME_USER_ID, TEST_USER_ID); in isRootOfTrustTableAvailable()
177 values.put(RootOfTrustEntry.COLUMN_NAME_UID, TEST_UID); in isRootOfTrustTableAvailable()
178 values.put(RootOfTrustEntry.COLUMN_NAME_ROOT_ALIAS, TEST_ROOT_ALIAS); in isRootOfTrustTableAvailable()
179 values.put(RootOfTrustEntry.COLUMN_NAME_CERT_PATH, TEST_CERT_PATH); in isRootOfTrustTableAvailable()
180 values.put(RootOfTrustEntry.COLUMN_NAME_CERT_SERIAL, TEST_CERT_SERIAL); in isRootOfTrustTableAvailable()
181 return mDatabase.replace(RootOfTrustEntry.TABLE_NAME, /*nullColumnHack=*/ null, values) in isRootOfTrustTableAvailable()