Searched refs:mountpoint (Results 1 – 4 of 4) sorted by relevance
/tools/tradefederation/core/src/com/android/tradefed/device/ |
D | ITestDevice.java | 55 public String mountpoint; field in ITestDevice.MountPointInfo 65 public MountPointInfo(String filesystem, String mountpoint, String type, in MountPointInfo() argument 68 this.mountpoint = mountpoint; in MountPointInfo() 73 public MountPointInfo(String filesystem, String mountpoint, String type, String optString) { in MountPointInfo() argument 74 this(filesystem, mountpoint, type, splitMountOptions(optString)); in MountPointInfo() 84 return String.format("%s %s %s %s", this.filesystem, this.mountpoint, this.type, in toString()
|
D | INativeDevice.java | 666 public MountPointInfo getMountPointInfo(String mountpoint) throws DeviceNotAvailableException; in getMountPointInfo() argument
|
D | NativeDevice.java | 1243 public MountPointInfo getMountPointInfo(String mountpoint) throws DeviceNotAvailableException { in getMountPointInfo() argument 1247 if (mountpoint.equals(info.mountpoint)) return info; in getMountPointInfo()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/device/ |
D | TestDeviceTest.java | 1778 assertEquals("mountpoint", info.mountpoint); in testMountInfo_simple() 1790 assertEquals("mountpoint", info.mountpoint); in testMountInfo_parseOptions() 1828 assertEquals("/", mpi.mountpoint); in testGetMountPointInfo() 1836 assertEquals("/mnt/secure/asec", mpi.mountpoint); in testGetMountPointInfo() 1867 assertEquals("/mnt/secure/asec", mpi.mountpoint); in testGetMountPointInfo_filter()
|