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/
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()
DLockSettingsStorage.java249 public void writeRebootEscrow(int userId, byte[] rebootEscrow) { in writeRebootEscrow() argument
250 writeFile(getRebootEscrowFile(userId), rebootEscrow); in writeRebootEscrow() local
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/
DRebootEscrowManagerTests.java154 IRebootEscrow rebootEscrow, in MockInjector() argument
160 mRebootEscrow = rebootEscrow; in MockInjector()