Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/locksettings/
DRebootEscrowManager.java213 IRebootEscrow rebootEscrow = mInjector.getRebootEscrow(); in getAndClearRebootEscrowKey() local
214 if (rebootEscrow == null) { in getAndClearRebootEscrowKey()
220 byte[] escrowKeyBytes = rebootEscrow.retrieveKey(); in getAndClearRebootEscrowKey()
241 rebootEscrow.storeKey(new byte[32]); in getAndClearRebootEscrowKey()
282 IRebootEscrow rebootEscrow = mInjector.getRebootEscrow(); in callToRebootEscrowIfNeeded() local
283 if (rebootEscrow == null) { in callToRebootEscrowIfNeeded()
333 IRebootEscrow rebootEscrow = mInjector.getRebootEscrow(); in clearRebootEscrowIfNeeded() local
334 if (rebootEscrow == null) { in clearRebootEscrowIfNeeded()
341 rebootEscrow.storeKey(new byte[32]); in clearRebootEscrowIfNeeded()
359 IRebootEscrow rebootEscrow = mInjector.getRebootEscrow(); in armRebootEscrowIfNeeded() local
[all …]
DLockSettingsStorage.java304 public void writeRebootEscrow(int userId, byte[] rebootEscrow) { in writeRebootEscrow() argument
305 writeFile(getRebootEscrowFile(userId), rebootEscrow); in writeRebootEscrow() local
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/
DRebootEscrowManagerTests.java101 MockInjector(Context context, UserManager userManager, IRebootEscrow rebootEscrow, in MockInjector() argument
104 mRebootEscrow = rebootEscrow; in MockInjector()