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

/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));
1334 * @param removeEncryption whether or not encryption mapping should be removed from the volume.
1337 public void unmountVolume(String mountPoint, boolean force, boolean removeEncryption) argument
/frameworks/base/services/java/com/android/server/
H A DMountService.java355 final boolean removeEncryption; field in class:MountService.UnmountCallBack
358 UnmountCallBack(String path, boolean force, boolean removeEncryption) { argument
362 this.removeEncryption = removeEncryption;
367 doUnmountVolume(path, true, removeEncryption);
395 int ret = doUnmountVolume(path, true, removeEncryption);
1038 * If removeEncryption is set, force is implied, and the system will remove any encryption
1041 private int doUnmountVolume(String path, boolean force, boolean removeEncryption) { argument
1058 if (removeEncryption) {
1586 public void unmountVolume(String path, boolean force, boolean removeEncryption) { argument
[all...]

Completed in 181 milliseconds