/cts/hostsidetests/dexmetadata/host/src/com/android/cts/dexmetadata/ |
D | BaseInstallMultiple.java | 128 final String remotePath = "/data/local/tmp/" + name; in run() local 129 if (!device.pushFile(file, remotePath)) { in run() 137 cmd.append(' ').append(remotePath); in run() 159 final String remotePath = "/data/local/tmp/" + name; in run() local 162 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 | 248 final String remotePath = "/data/local/tmp/" + remoteName; in runNonIncremental() local 249 if (!device.pushFile(localFile, remotePath)) { in runNonIncremental() 261 cmd.append(' ').append(remotePath); in runNonIncremental() 319 final String remotePath = "/data/local/tmp/" + remoteName; in runIncremental() local 320 if (!device.pushFile(localFile, remotePath)) { in runIncremental() 328 cmd.append(' ').append(remotePath); in runIncremental() 349 final String remotePath = "/data/local/tmp/" + remoteName; in cleanupDeviceFiles() local 350 device.deleteFile(remotePath); in cleanupDeviceFiles()
|
D | PkgInstallSignatureVerificationTest.java | 1579 String remotePath = "/data/local/tmp/pkginstalltest-" + localFile.getName(); in pushFileToRemote() local 1580 getDevice().pushFile(localFile, remotePath); in pushFileToRemote() 1581 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/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/mediaparser/src/android/media/mediaparser/cts/ |
D | MediaParserHostSideTest.java | 251 String remotePath = "/data/local/tmp/" + configFile.getName(); in uploadConfig() local 253 getDevice().deleteFile(remotePath); in uploadConfig() 254 assertThat(getDevice().pushFile(configFile, remotePath)).isTrue(); in uploadConfig() 257 "cat " + remotePath + " | cmd stats config update " + CONFIG_ID); in uploadConfig() 258 getDevice().deleteFile(remotePath); in uploadConfig()
|
/cts/hostsidetests/statsdatom/src/android/cts/statsdatom/lib/ |
D | ConfigUtils.java | 279 String remotePath = "/data/local/tmp/" + configFile.getName(); in uploadConfig() local 280 device.pushFile(configFile, remotePath); in uploadConfig() 283 device.executeShellCommand(String.join(" ", "cat", remotePath, "|", UPDATE_CONFIG_CMD, in uploadConfig() 287 device.executeShellCommand("rm " + remotePath); in uploadConfig()
|
/cts/hostsidetests/appcompat/host/lib/src/android/compat/cts/ |
D | CompatChangeGatingTestCase.java | 261 String remotePath = "/data/local/tmp/" + configFile.getName(); in createAndUploadStatsdConfig() local 262 device.pushFile(configFile, remotePath); in createAndUploadStatsdConfig() 263 device.executeShellCommand(String.format(UPDATE_CONFIG_CMD, remotePath, configId)); in createAndUploadStatsdConfig() 264 device.executeShellCommand("rm " + remotePath); in createAndUploadStatsdConfig()
|
/cts/hostsidetests/statsdatom/src/android/cts/statsdatom/statsd/ |
D | AtomTestCase.java | 289 String remotePath = "/data/local/tmp/" + configFile.getName(); in uploadConfig() local 290 getDevice().pushFile(configFile, remotePath); in uploadConfig() 292 String.join(" ", "cat", remotePath, "|", UPDATE_CONFIG_CMD, in uploadConfig() 294 getDevice().executeShellCommand("rm " + remotePath); in uploadConfig()
|