Home
last modified time | relevance | path

Searched refs:isDeviceEncrypted (Results 1 – 8 of 8) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/device/
DNativeDevice.java2183 if (isEncryptionSupported() && isDeviceEncrypted()) { in recoverDevice()
3019 if (isEncryptionSupported() && isDeviceEncrypted()) { in reboot()
3042 if (isDeviceEncrypted()) { in rebootUserspace()
3372 if (isDeviceEncrypted()) { in encryptDevice()
3407 return isDeviceEncrypted(); in encryptDevice()
3421 if (!isDeviceEncrypted()) { in unencryptDevice()
3503 if (!isDeviceEncrypted()) { in unlockDevice()
3563 public boolean isDeviceEncrypted() throws DeviceNotAvailableException { in isDeviceEncrypted() method in NativeDevice
/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DTestDeviceFuncTest.java814 assertFalse(getDevice().isDeviceEncrypted()); in testEncryption()
816 assertTrue(getDevice().isDeviceEncrypted()); in testEncryption()
823 assertFalse(getDevice().isDeviceEncrypted()); in testEncryption()
DNativeDeviceTest.java1789 public boolean isDeviceEncrypted() throws DeviceNotAvailableException { in testUnlockDevice_skipping()
1807 public boolean isDeviceEncrypted() throws DeviceNotAvailableException { in testUnlockDevice()
1833 public boolean isDeviceEncrypted() throws DeviceNotAvailableException { in testUnlockDevice_garbageOutput()
1859 public boolean isDeviceEncrypted() throws DeviceNotAvailableException { in testUnlockDevice_emptyOutput()
1885 public boolean isDeviceEncrypted() throws DeviceNotAvailableException { in testUnlockDevice_goodOutputPasswordEnteredCorrectly()
DTestDeviceTest.java1086 public boolean isDeviceEncrypted() throws DeviceNotAvailableException { in testEncryptDevice_alreadyEncrypted()
1102 public boolean isDeviceEncrypted() throws DeviceNotAvailableException { in testEncryptDevice_encryptionFails()
1127 public boolean isDeviceEncrypted() throws DeviceNotAvailableException { in testUnencryptDevice_erase()
1167 public boolean isDeviceEncrypted() throws DeviceNotAvailableException { in testUnencryptDevice_wipe()
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DDeviceFlashPreparer.java354 if (!device.isDeviceEncrypted()) { in preEncryptDevice()
454 } else if (device.isDeviceEncrypted()) { in tearDown()
DFastbootDeviceFlasher.java541 if (device.isEncryptionSupported() && device.isDeviceEncrypted()) { in flashUserData()
/tools/tradefederation/core/tests/src/com/android/tradefed/targetprep/
DDeviceFlashPreparerTest.java152 EasyMock.expect(mMockDevice.isDeviceEncrypted()).andStubReturn(Boolean.FALSE); in doSetupExpectations()
207 EasyMock.expect(mMockDevice.isDeviceEncrypted()).andStubReturn(Boolean.FALSE); in testSetup_buildError()
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/
DINativeDevice.java1120 public boolean isDeviceEncrypted() throws DeviceNotAvailableException; in isDeviceEncrypted() method