HomeSort by relevance Sort by last modified time
    Searched refs:removeEncryption (Results 1 - 4 of 4) sorted by null

  /frameworks/base/include/storage/
IMountService.h 43 const String16& mountPoint, const bool force, const bool removeEncryption) = 0;
  /frameworks/base/services/core/java/com/android/server/
MountService.java 375 final boolean removeEncryption;
378 UnmountCallBack(String path, boolean force, boolean removeEncryption) {
382 this.removeEncryption = removeEncryption;
387 doUnmountVolume(path, true, removeEncryption);
415 int ret = doUnmountVolume(path, true, removeEncryption);
    [all...]
  /frameworks/base/libs/storage/
IMountService.cpp 160 int32_t unmountVolume(const String16& mountPoint, const bool force, const bool removeEncryption)
166 data.writeInt32(removeEncryption ? 1 : 0);
  /frameworks/base/core/java/android/os/storage/
IMountService.java 170 public void unmountVolume(String mountPoint, boolean force, boolean removeEncryption)
178 _data.writeInt((removeEncryption ? 1 : 0));
    [all...]

Completed in 214 milliseconds