Home
last modified time | relevance | path

Searched refs:remoteFile (Results 1 – 5 of 5) sorted by relevance

/cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
DBaseInstallMultiple.java50 public final File remoteFile; field in BaseInstallMultiple.DeviceFile
54 private DeviceFile(File localFile, File remoteFile, boolean addToInstallSession, in DeviceFile() argument
57 this.remoteFile = remoteFile; in DeviceFile()
66 static DeviceFile renameAndAddToSession(File localFile, File remoteFile) { in renameAndAddToSession() argument
67 return new DeviceFile(localFile, remoteFile, true, true); in renameAndAddToSession()
74 static DeviceFile renameAndPushOnly(File localFile, File remoteFile) { in renameAndPushOnly() argument
75 return new DeviceFile(localFile, remoteFile, false, true); in renameAndPushOnly()
78 static DeviceFile addRemoteFileToSession(File remoteFile) { in addRemoteFileToSession() argument
79 return new DeviceFile(null, remoteFile, true, false); in addRemoteFileToSession()
122 T addRemoteFile(String remoteFile) { in addRemoteFile() argument
[all …]
/cts/hostsidetests/jdwpsecurity/src/android/jdwpsecurity/cts/
DJdwpSecurityHostTest.java275 File remoteFile = new File(remoteFilePath); in createRemoteDir() local
276 String parentPath = remoteFile.getParent(); in createRemoteDir()
/cts/common/device-side/interactive/src/main/java/com/android/interactive/
DAutomator.java130 try (ParcelFileDescriptor remoteFile = mContext.createContextAsUser( in copyAutomationFileToInternalStorage() argument
137 InputStream fileStream = new FileInputStream(remoteFile.getFileDescriptor()); in copyAutomationFileToInternalStorage()
/cts/hostsidetests/appcompat/strictjavapackages/src/android/compat/sjp/cts/
DStrictJavaPackagesTest.java1042 final String remoteFile = "/sdcard/apk-in-apex-paths.txt"; in collectApkInApexPaths() local
1045 content = getDevice().pullFileContents(remoteFile); in collectApkInApexPaths()
1047 getDevice().deleteFile(remoteFile); in collectApkInApexPaths()
/cts/hostsidetests/securitybulletin/src/android/security/cts/
DAdbUtils.java212 String remoteFile = String.format("%s%s", TMP_PATH, pocName); in runPoc() local
213 SecurityTestCase.getPocPusher(device).pushFile(pocName + "_sts", remoteFile); in runPoc()