Home
last modified time | relevance | path

Searched refs:rebootEscrow (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/locksettings/
H A DRebootEscrowProviderHalImpl.java74 IRebootEscrow rebootEscrow = mInjector.getRebootEscrow(); in getAndClearRebootEscrowKey() local
75 if (rebootEscrow == null) { in getAndClearRebootEscrowKey()
81 byte[] escrowKeyBytes = rebootEscrow.retrieveKey(); in getAndClearRebootEscrowKey()
102 rebootEscrow.storeKey(new byte[32]); in getAndClearRebootEscrowKey()
116 IRebootEscrow rebootEscrow = mInjector.getRebootEscrow(); in clearRebootEscrowKey() local
117 if (rebootEscrow == null) { in clearRebootEscrowKey()
122 rebootEscrow.storeKey(new byte[32]); in clearRebootEscrowKey()
131 IRebootEscrow rebootEscrow = mInjector.getRebootEscrow(); in storeRebootEscrowKey() local
132 if (rebootEscrow == null) { in storeRebootEscrowKey()
140 rebootEscrow.storeKey(escrowKey.getKeyBytes()); in storeRebootEscrowKey()
H A DLockSettingsStorage.java248 public void writeRebootEscrow(int userId, byte[] rebootEscrow) { in writeRebootEscrow() argument
249 writeFile(getRebootEscrowFile(userId), rebootEscrow); in writeRebootEscrow() local
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/
H A DRebootEscrowManagerTests.java145 IRebootEscrow rebootEscrow, in MockInjector() argument
150 mRebootEscrow = rebootEscrow; in MockInjector()