Home
last modified time | relevance | path

Searched refs:isEncryptionSupported (Results 1 – 10 of 10) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/device/
DNativeDevice.java2183 if (isEncryptionSupported() && isDeviceEncrypted()) { in recoverDevice()
3019 if (isEncryptionSupported() && isDeviceEncrypted()) { in reboot()
3041 if (isEncryptionSupported()) { in rebootUserspace()
3367 if (!isEncryptionSupported()) { in encryptDevice()
3416 if (!isEncryptionSupported()) { in unencryptDevice()
3498 if (!isEncryptionSupported()) { in unlockDevice()
3566 if (output == null && isEncryptionSupported()) { in isDeviceEncrypted()
3579 public boolean isEncryptionSupported() throws DeviceNotAvailableException { in isEncryptionSupported() method in NativeDevice
DRemoteAndroidDevice.java264 public boolean isEncryptionSupported() { in isEncryptionSupported() method in RemoteAndroidDevice
/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DNativeDeviceTest.java1785 public boolean isEncryptionSupported() throws DeviceNotAvailableException { in testUnlockDevice_skipping()
1803 public boolean isEncryptionSupported() throws DeviceNotAvailableException { in testUnlockDevice()
1829 public boolean isEncryptionSupported() throws DeviceNotAvailableException { in testUnlockDevice_garbageOutput()
1855 public boolean isEncryptionSupported() throws DeviceNotAvailableException { in testUnlockDevice_emptyOutput()
1881 public boolean isEncryptionSupported() throws DeviceNotAvailableException { in testUnlockDevice_goodOutputPasswordEnteredCorrectly()
DTestDeviceTest.java590 public boolean isEncryptionSupported() throws DeviceNotAvailableException { in testExecuteShellCommand_recoveryRetry()
657 public boolean isEncryptionSupported() throws DeviceNotAvailableException { in testExecuteShellCommand_recoveryTimeoutRetry()
707 public boolean isEncryptionSupported() throws DeviceNotAvailableException { in testExecuteShellCommand_recoveryAttempts()
4516 assertTrue(mTestDevice.isEncryptionSupported()); in testIsEncryptionSupported_newformat()
4536 assertFalse(mTestDevice.isEncryptionSupported()); in testIsEncryptionSupported_failure()
DTestDeviceFuncTest.java808 if (!getDevice().isEncryptionSupported()) { in testEncryption()
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DDeviceFlashPreparer.java350 if (!device.isEncryptionSupported()) { in preEncryptDevice()
410 if (!device.isEncryptionSupported()) { in postEncryptDevice()
DFastbootDeviceFlasher.java541 if (device.isEncryptionSupported() && device.isDeviceEncrypted()) { in flashUserData()
/tools/tradefederation/core/tests/src/com/android/tradefed/targetprep/
DDeviceFlashPreparerTest.java151 EasyMock.expect(mMockDevice.isEncryptionSupported()).andStubReturn(Boolean.TRUE); in doSetupExpectations()
206 EasyMock.expect(mMockDevice.isEncryptionSupported()).andStubReturn(Boolean.TRUE); in testSetup_buildError()
DFastbootDeviceFlasherTest.java257 EasyMock.expect(mMockDevice.isEncryptionSupported()).andReturn(Boolean.FALSE); in testFlashUserData_testsZip()
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/
DINativeDevice.java1128 public boolean isEncryptionSupported() throws DeviceNotAvailableException; in isEncryptionSupported() method