Home
last modified time | relevance | path

Searched refs:setUserKeyProtection (Results 1 – 5 of 5) sorted by relevance

/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/
H A DFakeStorageManager.java27 public void setUserKeyProtection(int userId, byte[] secret) { in setUserKeyProtection() method in FakeStorageManager
H A DBaseLockSettingsServiceTests.java314 mStorageManager.setUserKeyProtection(/* userId= */ (int) args[0], in setUpStorageManagerMock()
317 }).when(sm).setUserKeyProtection(anyInt(), any()); in setUpStorageManagerMock()
/aosp14/frameworks/base/core/java/android/os/storage/
H A DIStorageManager.aidl150 void setUserKeyProtection(int userId, in byte[] secret) = 70; in setUserKeyProtection() method
/aosp14/frameworks/base/services/core/java/com/android/server/locksettings/
H A DLockSettingsService.java1035 setUserKeyProtection(userId, result.syntheticPassword.deriveFileBasedEncryptionKey()); in migrateUserToSpWithBoundCeKeyLocked()
1981 private void setUserKeyProtection(@UserIdInt int userId, byte[] secret) { in setUserKeyProtection() method in LockSettingsService
1984 mStorageManager.setUserKeyProtection(userId, secret); in setUserKeyProtection()
2759 setUserKeyProtection(userId, sp.deriveFileBasedEncryptionKey()); in initializeSyntheticPassword()
/aosp14/frameworks/base/services/core/java/com/android/server/
H A DStorageManagerService.java3162 public void setUserKeyProtection(@UserIdInt int userId, byte[] secret) throws RemoteException { in setUserKeyProtection() method in StorageManagerService
3165 mVold.setUserKeyProtection(userId, HexDump.toHexString(secret)); in setUserKeyProtection()