Home
last modified time | relevance | path

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

/cts/hostsidetests/jdwpsecurity/src/android/jdwpsecurity/cts/
DJdwpSecurityHostTest.java270 private boolean createRemoteDir(String remoteFilePath) throws DeviceNotAvailableException { in createRemoteDir() argument
271 if (getDevice().doesFileExist(remoteFilePath)) { in createRemoteDir()
274 File remoteFile = new File(remoteFilePath); in createRemoteDir()
281 getDevice().executeShellCommand(String.format("mkdir %s", remoteFilePath)); in createRemoteDir()
282 return getDevice().doesFileExist(remoteFilePath); in createRemoteDir()
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
DGeeTest.java139 private boolean createRemoteDir(String remoteFilePath) throws DeviceNotAvailableException { in createRemoteDir() argument
140 if (mDevice.doesFileExist(remoteFilePath)) { in createRemoteDir()
148 mDevice.executeShellCommand(String.format("mkdir %s", remoteFilePath)); in createRemoteDir()
149 return mDevice.doesFileExist(remoteFilePath); in createRemoteDir()
DVMHostTest.java118 private void createRemoteDir(ITestDevice device, String remoteFilePath) in createRemoteDir() argument
120 if (device.doesFileExist(remoteFilePath)) { in createRemoteDir()
127 device.executeShellCommand(String.format("mkdir %s", remoteFilePath)); in createRemoteDir()
/cts/tools/vm-tests-tf/targetprep/src/android/core/vm/targetprep/
DVmTestPreparer.java125 private void createRemoteDir(ITestDevice device, String remoteFilePath) in createRemoteDir() argument
127 if (device.doesFileExist(remoteFilePath)) { in createRemoteDir()
134 device.executeShellCommand(String.format("mkdir %s", remoteFilePath)); in createRemoteDir()