Home | History | Annotate | Download | only in storage

Lines Matching refs:mountPoint

151             public int mountVolume(String mountPoint) throws RemoteException {
157 _data.writeString(mountPoint);
173 public void unmountVolume(String mountPoint, boolean force, boolean removeEncryption)
179 _data.writeString(mountPoint);
194 public int formatVolume(String mountPoint) throws RemoteException {
200 _data.writeString(mountPoint);
232 * Gets the state of a volume via its mountpoint.
234 public String getVolumeState(String mountPoint) throws RemoteException {
240 _data.writeString(mountPoint);
1582 String mountPoint;
1583 mountPoint = data.readString();
1584 int resultCode = mountVolume(mountPoint);
1591 String mountPoint;
1592 mountPoint = data.readString();
1595 unmountVolume(mountPoint, force, removeEncrypt);
1601 String mountPoint;
1602 mountPoint = data.readString();
1603 int result = formatVolume(mountPoint);
1619 String mountPoint;
1620 mountPoint = data.readString();
1621 String state = getVolumeState(mountPoint);
2193 public int formatVolume(String mountPoint) throws RemoteException;
2216 * Gets the state of a volume via its mountpoint.
2218 public String getVolumeState(String mountPoint) throws RemoteException;
2261 public int mountVolume(String mountPoint) throws RemoteException;
2305 * @param mountPoint the mount point
2311 public void unmountVolume(String mountPoint, boolean force, boolean removeEncryption)