/cts/hostsidetests/dexmetadata/host/src/com/android/cts/dexmetadata/ |
D | BaseInstallMultiple.java | 119 final String remotePath = "/data/local/tmp/" + name; in run() local 120 if (!device.pushFile(file, remotePath)) { in run() 128 cmd.append(' ').append(remotePath); in run() 150 final String remotePath = "/data/local/tmp/" + name; in run() local 153 cmd.append(' ').append(remotePath); in run()
|
/cts/hostsidetests/media/src/android/media/cts/ |
D | MediaExtractorHostSideTest.java | 124 String remotePath = "/data/local/tmp/" + configFile.getName(); in uploadConfig() local 126 getDevice().deleteFile(remotePath); in uploadConfig() 127 assertThat(getDevice().pushFile(configFile, remotePath)).isTrue(); in uploadConfig() 130 "cat " + remotePath + " | cmd stats config update " + CONFIG_ID); in uploadConfig() 131 getDevice().deleteFile(remotePath); in uploadConfig()
|
/cts/hostsidetests/appsecurity/src/android/appsecurity/cts/ |
D | BaseInstallMultiple.java | 290 final String remotePath = "/data/local/tmp/" + remoteName; in runNonIncrementalForResult() local 291 if (manageRemoteFile && !device.pushFile(localFile, remotePath)) { in runNonIncrementalForResult() 303 cmd.append(' ').append(remotePath); in runNonIncrementalForResult() 367 final String remotePath = "/data/local/tmp/" + remoteName; in runIncrementalForResult() local 368 if (manageRemoteFile && !device.pushFile(localFile, remotePath)) { in runIncrementalForResult() 376 cmd.append(' ').append(remotePath); in runIncrementalForResult() 405 final String remotePath = "/data/local/tmp/" + remoteName; in cleanupDeviceFiles() local 406 device.deleteFile(remotePath); in cleanupDeviceFiles()
|
D | PkgInstallSignatureVerificationTest.java | 2034 String remotePath = "/data/local/tmp/pkginstalltest-" + localFile.getName(); in pushFileToRemote() local 2035 getDevice().pushFile(localFile, remotePath); in pushFileToRemote() 2036 return remotePath; in pushFileToRemote()
|
/cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/metrics/ |
D | AtomMetricTester.java | 88 String remotePath = "/data/local/tmp/" + configFile.getName(); in uploadConfig() local 89 mDevice.pushFile(configFile, remotePath); in uploadConfig() 90 mDevice.executeShellCommand(String.format(UPDATE_CONFIG_CMD, remotePath, CONFIG_ID)); in uploadConfig() 91 mDevice.executeShellCommand("rm " + remotePath); in uploadConfig()
|
/cts/hostsidetests/mediaparser/src/android/media/mediaparser/cts/ |
D | MediaParserHostSideTest.java | 255 String remotePath = "/data/local/tmp/" + configFile.getName(); in uploadConfig() local 257 getDevice().deleteFile(remotePath); in uploadConfig() 258 assertThat(getDevice().pushFile(configFile, remotePath)).isTrue(); in uploadConfig() 261 "cat " + remotePath + " | cmd stats config update " + CONFIG_ID); in uploadConfig() 262 getDevice().deleteFile(remotePath); in uploadConfig()
|
/cts/hostsidetests/classloaders/useslibrary/src/android/classloaders/cts/ |
D | BaseInstallMultiple.java | 156 final String remotePath = "/data/local/tmp/" + i + "_" + apk.getName(); in run() local 157 if (!device.pushFile(apk, remotePath)) { in run() 165 cmd.append(' ').append(remotePath); in run()
|
/cts/hostsidetests/classloaders/splits/src/android/classloaders/cts/ |
D | BaseInstallMultiple.java | 156 final String remotePath = "/data/local/tmp/" + i + "_" + apk.getName(); in run() local 157 if (!device.pushFile(apk, remotePath)) { in run() 165 cmd.append(' ').append(remotePath); in run()
|
/cts/hostsidetests/statsdatom/src/android/cts/statsdatom/lib/ |
D | ConfigUtils.java | 277 String remotePath = "/data/local/tmp/" + configFile.getName(); in uploadConfig() local 278 device.pushFile(configFile, remotePath); in uploadConfig() 282 String.join(" ", "cat", remotePath, "|", UPDATE_CONFIG_CMD, SHELL_UID_STRING, in uploadConfig() 286 device.executeShellCommand("rm " + remotePath); in uploadConfig()
|
/cts/hostsidetests/appcompat/host/lib/src/android/compat/cts/ |
D | CompatChangeGatingTestCase.java | 259 String remotePath = "/data/local/tmp/" + configFile.getName(); in createAndUploadStatsdConfig() local 260 device.pushFile(configFile, remotePath); in createAndUploadStatsdConfig() 261 device.executeShellCommand(String.format(UPDATE_CONFIG_CMD, remotePath, configId)); in createAndUploadStatsdConfig() 262 device.executeShellCommand("rm " + remotePath); in createAndUploadStatsdConfig()
|
/cts/hostsidetests/compilation/src/android/compilation/cts/ |
D | Utils.java | 148 public void pushFromResource(String resource, String remotePath) throws Exception { in pushFromResource() argument 151 mTestInfo.getDevice().pushFile(tempFile, remotePath); in pushFromResource()
|