Searched refs:remoteFile (Results 1 – 2 of 2) sorted by relevance
/platform_testing/libraries/sts-common-util/host-side/src/com/android/sts/common/ |
D | PocPusher.java | 115 public void pushFile(String testFile, String remoteFile) in pushFile() argument 133 CLog.i("Pushing local: %s to remote: %s", testFile.toString(), remoteFile); in pushFile() 135 device.pushFile(localFile, remoteFile); in pushFile() 137 filesToCleanup.add(remoteFile); in pushFile()
|
D | NativePoc.java | 283 final String remoteFile = TMP_PATH + pocName(); in withPoc() local 284 pocPusher.pushFile(pocName() + "_sts", remoteFile); in withPoc() local 285 device.executeShellV2Command(String.format("chmod 777 '%s'", remoteFile)); in withPoc() 286 CommandUtil.runAndCheck(device, String.format("test -r '%s'", remoteFile)); in withPoc() 287 CommandUtil.runAndCheck(device, String.format("test -w '%s'", remoteFile)); in withPoc() 288 CommandUtil.runAndCheck(device, String.format("test -x '%s'", remoteFile)); in withPoc() 293 device.deleteFile(remoteFile); in withPoc()
|