Searched refs:setUserKeyProtection (Results 1 – 5 of 5) sorted by relevance
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/ |
H A D | FakeStorageManager.java | 27 public void setUserKeyProtection(int userId, byte[] secret) { in setUserKeyProtection() method in FakeStorageManager
|
H A D | BaseLockSettingsServiceTests.java | 314 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 D | IStorageManager.aidl | 150 void setUserKeyProtection(int userId, in byte[] secret) = 70; in setUserKeyProtection() method
|
/aosp14/frameworks/base/services/core/java/com/android/server/locksettings/ |
H A D | LockSettingsService.java | 1035 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 D | StorageManagerService.java | 3162 public void setUserKeyProtection(@UserIdInt int userId, byte[] secret) throws RemoteException { in setUserKeyProtection() method in StorageManagerService 3165 mVold.setUserKeyProtection(userId, HexDump.toHexString(secret)); in setUserKeyProtection()
|