Home
last modified time | relevance | path

Searched refs:mountpoint (Results 1 – 4 of 4) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/device/
DITestDevice.java55 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()
DINativeDevice.java759 public MountPointInfo getMountPointInfo(String mountpoint) throws DeviceNotAvailableException; in getMountPointInfo() argument
DNativeDevice.java1386 public MountPointInfo getMountPointInfo(String mountpoint) throws DeviceNotAvailableException { in getMountPointInfo() argument
1390 if (mountpoint.equals(info.mountpoint)) return info; in getMountPointInfo()
/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DTestDeviceTest.java2230 assertEquals("mountpoint", info.mountpoint); in testMountInfo_simple()
2242 assertEquals("mountpoint", info.mountpoint); in testMountInfo_parseOptions()
2280 assertEquals("/", mpi.mountpoint); in testGetMountPointInfo()
2288 assertEquals("/mnt/secure/asec", mpi.mountpoint); in testGetMountPointInfo()
2319 assertEquals("/mnt/secure/asec", mpi.mountpoint); in testGetMountPointInfo_filter()