Searched defs:removeEncryption (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/os/storage/
H A DIMountService.java172 public void unmountVolume(String mountPoint, boolean force, boolean removeEncryption) argument
180 _data.writeInt((removeEncryption ? 1 : 0));
1307 * @param removeEncryption whether or not encryption mapping should be removed from the volume.
1310 public void unmountVolume(String mountPoint, boolean force, boolean removeEncryption) argument
/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/services/java/com/android/server/
H A DMountService.java340 final boolean removeEncryption; field in class:MountService.UnmountCallBack
343 UnmountCallBack(String path, boolean force, boolean removeEncryption) { argument
347 this.removeEncryption = removeEncryption;
352 doUnmountVolume(path, true, removeEncryption);
380 int ret = doUnmountVolume(path, true, removeEncryption);
986 * If removeEncryption is set, force is implied, and the system will remove any encryption
989 private int doUnmountVolume(String path, boolean force, boolean removeEncryption) { argument
1006 if (removeEncryption) {
1523 public void unmountVolume(String path, boolean force, boolean removeEncryption) { argument
[all...]

Completed in 167 milliseconds