Home
last modified time | relevance | path

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

/tools/tradefederation/core/device_build_interfaces/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.java818 public MountPointInfo getMountPointInfo(String mountpoint) throws DeviceNotAvailableException; in getMountPointInfo() argument
/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DTestDeviceTest.java2316 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/
DNativeDevice.java1470 public MountPointInfo getMountPointInfo(String mountpoint) throws DeviceNotAvailableException { in getMountPointInfo() argument
1474 if (mountpoint.equals(info.mountpoint)) return info; in getMountPointInfo()