Home | History | Annotate | Download | only in storage

Lines Matching defs:alias

90      * @param alias The alias of the key in the AndroidKeyStore.
96 public long insertKey(int userId, int uid, String alias, WrappedKey wrappedKey) {
101 values.put(KeysEntry.COLUMN_NAME_ALIAS, alias);
111 * Gets the key with {@code alias} for the app with {@code uid}.
115 @Nullable public WrappedKey getKey(int uid, String alias) {
126 String[] selectionArguments = { Integer.toString(uid), alias };
145 "%d WrappedKey entries found for uid=%d alias='%s'. "
146 + "Should only ever be 0 or 1.", count, uid, alias));
163 * Removes key with {@code alias} for app with {@code uid}.
167 public boolean removeKey(int uid, String alias) {
171 String[] selectionArgs = { Integer.toString(uid), alias };
206 String alias = cursor.getString(
210 statuses.put(alias, recoveryStatus);
219 * @param alias of the key
224 public int setRecoveryStatus(int uid, String alias, int status) {
232 new String[] {String.valueOf(uid), alias});
282 String alias = cursor.getString(
286 keys.put(alias, new WrappedKey(nonce, keyMaterial, platformKeyGenerationId,
392 alias.
408 * @param rootAlias The root of trust alias.
425 * @param rootAlias The root of trust alias.
454 * @param rootAlias The root of trust alias.
627 * @param rootAlias The root of trust alias.
649 * @return Active root of trust alias of null if it was not set
996 * @param rootAlias The root of trust alias.
1054 * @param rootAlias The root of trust alias.
1082 * @param rootAlias The root of trust alias.
1140 * @param rootAlias The root of trust alias.