HomeSort by relevance Sort by last modified time
    Searched defs:deviceFilePath (Results 1 - 3 of 3) sorted by null

  /tools/tradefederation/core/tests/src/com/android/tradefed/device/
TestDeviceStressTest.java 112 String deviceFilePath = null;
115 deviceFilePath = String.format("%s/%s", externalStorePath, "testDir");
123 mTestDevice.executeShellCommand(String.format("rm -r %s", deviceFilePath));
124 assertFalse(String.format("%s exists", deviceFilePath),
125 mTestDevice.doesFileExist(deviceFilePath));
126 assertTrue(mTestDevice.pushDir(tmpDir, deviceFilePath));
127 assertTrue(mTestDevice.doesFileExist(deviceFilePath));
133 mTestDevice.executeShellCommand(String.format("rm -r %s", deviceFilePath));
134 assertFalse(String.format("%s exists", deviceFilePath),
135 mTestDevice.doesFileExist(deviceFilePath));
    [all...]
TestDeviceFuncTest.java 203 String deviceFilePath = null;
209 deviceFilePath = String.format("%s/%s", externalStorePath, "tmp_testPushPull.txt");
211 mTestDevice.executeShellCommand(String.format("rm %s", deviceFilePath));
212 assertFalse(String.format("%s exists", deviceFilePath),
213 mTestDevice.doesFileExist(deviceFilePath));
215 assertTrue(mTestDevice.pushFile(tmpFile, deviceFilePath));
216 assertTrue(mTestDevice.doesFileExist(deviceFilePath));
218 assertTrue(mTestDevice.pullFile(deviceFilePath, tmpDestFile));
225 if (deviceFilePath != null) {
226 mTestDevice.executeShellCommand(String.format("rm %s", deviceFilePath));
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/file/
Files2Test.java 345 Path deviceFilePath = Paths.get("/dev/null");
346 assertTrue(Files.exists(deviceFilePath));
347 assertFalse(Files.isRegularFile(deviceFilePath));
    [all...]

Completed in 137 milliseconds