Searched refs:mountpoint (Results 1 – 4 of 4) sorted by relevance
/tools/tradefederation/core/device_build_interfaces/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 | 818 public MountPointInfo getMountPointInfo(String mountpoint) throws DeviceNotAvailableException; in getMountPointInfo() argument
|
/tools/tradefederation/core/tests/src/com/android/tradefed/device/ |
D | TestDeviceTest.java | 2316 assertEquals("mountpoint", info.mountpoint); in testMountInfo_simple() 2328 assertEquals("mountpoint", info.mountpoint); in testMountInfo_parseOptions() 2366 assertEquals("/", mpi.mountpoint); in testGetMountPointInfo() 2374 assertEquals("/mnt/secure/asec", mpi.mountpoint); in testGetMountPointInfo() 2405 assertEquals("/mnt/secure/asec", mpi.mountpoint); in testGetMountPointInfo_filter()
|
/tools/tradefederation/core/src/com/android/tradefed/device/ |
D | NativeDevice.java | 1470 public MountPointInfo getMountPointInfo(String mountpoint) throws DeviceNotAvailableException { in getMountPointInfo() argument 1474 if (mountpoint.equals(info.mountpoint)) return info; in getMountPointInfo()
|