Home
last modified time | relevance | path

Searched refs:mountPoint (Results 1 – 3 of 3) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DFastbootDeviceFlasher.java874 File mountPoint = null; in flashWithFuseZip() local
877 mountPoint = FileUtil.createTempDir("FlashAllMountPoint"); in flashWithFuseZip()
878 fuseUtil.mountZip(deviceBuild.getDeviceImageFile().getAbsoluteFile(), mountPoint); in flashWithFuseZip() local
880 systemVarMap.put("ANDROID_PRODUCT_OUT", mountPoint.getAbsolutePath()); in flashWithFuseZip()
899 if (mountPoint != null) { in flashWithFuseZip()
900 fuseUtil.unmountZip(mountPoint); in flashWithFuseZip()
901 FileUtil.recursiveDelete(mountPoint); in flashWithFuseZip()
904 if (mountPoint.exists()) { in flashWithFuseZip()
908 mountPoint); in flashWithFuseZip()
/tools/tradefederation/core/src/com/android/tradefed/device/
DNativeDeviceStateMonitor.java472 String mountPoint = getIDevice().getMountPoint(mountName); in getMountPoint() local
473 if (mountPoint != null) { in getMountPoint()
474 return mountPoint; in getMountPoint()
/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/
DPushFilePreparer.java386 String mountPoint = device.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in setUp() local
387 device.executeShellCommand(String.format(MEDIA_SCAN_INTENT, mountPoint)); in setUp()