Searched refs:mountPoint (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/libs/storage/include/storage/
H A DIMountService.h41 virtual int32_t mountVolume(const String16& mountPoint) = 0;
43 const String16& mountPoint, const bool force, const bool removeEncryption) = 0;
44 virtual int32_t formatVolume(const String16& mountPoint) = 0;
46 getStorageUsers(const String16& mountPoint, int32_t** users) = 0;
47 virtual int32_t getVolumeState(const String16& mountPoint) = 0;
/frameworks/base/services/core/java/com/android/server/storage/
H A DAppFuseBridge.java108 new File(scope.mountPoint, String.valueOf(fileId)), mode);
136 public final File mountPoint; field in class:AppFuseBridge.MountScope
144 this.mountPoint = new File(String.format(APPFUSE_MOUNT_NAME_TEMPLATE, uid, mountId));
/frameworks/base/core/java/android/os/storage/
H A DIStorageManager.aidl64 int mountVolume(in String mountPoint) = 5;
69 * @param mountPoint the mount point
75 void unmountVolume(in String mountPoint, boolean force, boolean removeEncryption) = 6;
80 int formatVolume(in String mountPoint) = 7;
88 String getVolumeState(in String mountPoint) = 9;
H A DStorageManager.java1034 public @NonNull String getVolumeState(String mountPoint) { argument
1035 final StorageVolume vol = getStorageVolume(new File(mountPoint));
/frameworks/base/libs/storage/
H A DIMountService.cpp143 int32_t mountVolume(const String16& mountPoint) argument
147 data.writeString16(mountPoint);
160 int32_t unmountVolume(const String16& mountPoint, const bool force, const bool removeEncryption) argument
164 data.writeString16(mountPoint);
179 int32_t formatVolume(const String16& mountPoint) argument
183 data.writeString16(mountPoint);
196 int32_t getStorageUsers(const String16& mountPoint, int32_t** users) argument
200 data.writeString16(mountPoint);
225 int32_t getVolumeState(const String16& mountPoint) argument
229 data.writeString16(mountPoint);
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DMockStorageManager.java133 public int mountVolume(String mountPoint) throws RemoteException { argument
138 public void unmountVolume(String mountPoint, boolean force, boolean removeEncryption) argument
145 public int formatVolume(String mountPoint) throws RemoteException { argument
155 public String getVolumeState(String mountPoint) throws RemoteException { argument
/frameworks/base/services/core/java/com/android/server/
H A DStorageManagerService.java1735 public String getVolumeState(String mountPoint) { argument

Completed in 193 milliseconds