Searched refs:removeEncryption (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/include/storage/
H A DIMountService.h43 const String16& mountPoint, const bool force, const bool removeEncryption) = 0;
/frameworks/base/services/core/java/com/android/server/
H A DMountService.java383 final boolean removeEncryption; field in class:MountService.UnmountCallBack
386 UnmountCallBack(String path, boolean force, boolean removeEncryption) { argument
390 this.removeEncryption = removeEncryption;
395 doUnmountVolume(path, true, removeEncryption);
423 int ret = doUnmountVolume(path, true, removeEncryption);
1166 * If removeEncryption is set, force is implied, and the system will remove any encryption
1169 private int doUnmountVolume(String path, boolean force, boolean removeEncryption) { argument
1186 if (removeEncryption) {
1740 public void unmountVolume(String path, boolean force, boolean removeEncryption) { argument
[all...]
/frameworks/base/libs/storage/
H A DIMountService.cpp160 int32_t unmountVolume(const String16& mountPoint, const bool force, const bool removeEncryption) argument
166 data.writeInt32(removeEncryption ? 1 : 0);
/frameworks/base/core/java/android/os/storage/
H A DIMountService.java170 public void unmountVolume(String mountPoint, boolean force, boolean removeEncryption) argument
178 _data.writeInt((removeEncryption ? 1 : 0));
1550 * @param removeEncryption whether or not encryption mapping should be removed from the volume.
1553 public void unmountVolume(String mountPoint, boolean force, boolean removeEncryption) argument

Completed in 2074 milliseconds