Home
last modified time | relevance | path

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

/tools/tradefederation/core/javatests/com/android/tradefed/device/
DTestDeviceFuncTest.java225 String externalStorePath = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in testPushPull_normal() local
226 assertNotNull(externalStorePath); in testPushPull_normal()
227 deviceFilePath = String.format("%s/%s", externalStorePath, "tmp_testPushPull.txt"); in testPushPull_normal()
266 String externalStorePath = "${EXTERNAL_STORAGE}"; in testPushPull_extStorageVariable() local
267 assertNotNull(externalStorePath); in testPushPull_extStorageVariable()
268 deviceFilePath = String.format("%s/%s", externalStorePath, filename); in testPushPull_extStorageVariable()
304 String externalStorePath = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in testPull_noexist() local
305 assertNotNull(externalStorePath); in testPull_noexist()
306 String deviceFilePath = String.format("%s/%s", externalStorePath, "thisfiledoesntexist"); in testPull_noexist()
324 String externalStorePath = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in testPull_nopermissions() local
[all …]
/tools/tradefederation/core/src/com/android/tradefed/device/
DNativeDeviceStateMonitor.java702 private String getFileSystem(String externalStorePath) throws DeviceNotAvailableException { in getFileSystem() argument
704 String statCommand = "stat -f -c \"%t\" " + externalStorePath; in getFileSystem()
710 CLog.e("Exception while attempting to read filesystem of '%s'", externalStorePath); in getFileSystem()
717 externalStorePath), in getFileSystem()
DNativeDevice.java1749 String externalStorePath = getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in getExternalStoreFreeSpace() local
1750 return getPartitionFreeSpace(externalStorePath); in getExternalStoreFreeSpace()
1784 private String getDfOutput(String externalStorePath) throws DeviceNotAvailableException { in getDfOutput() argument
1786 String output = executeShellCommand(String.format("df %s", externalStorePath)); in getDfOutput()
1836 Long parseFreeSpaceFromFree(String externalStorePath, String dfOutput) { in parseFreeSpaceFromFree() argument
1840 "%s\\s+[\\w\\d\\.]+\\s+[\\w\\d\\.]+\\s+([\\d\\.]+)(\\w)", externalStorePath)); in parseFreeSpaceFromFree()