/cts/hostsidetests/media/src/android/media/cts/ |
D | MediaExtractorHostSideTest.java | 115 String remotePath = "/data/local/tmp/" + configFile.getName(); in uploadConfig() local 117 getDevice().deleteFile(remotePath); in uploadConfig() 118 assertThat(getDevice().pushFile(configFile, remotePath)).isTrue(); in uploadConfig() 121 "cat " + remotePath + " | cmd stats config update " + CONFIG_ID); in uploadConfig() 122 getDevice().deleteFile(remotePath); in uploadConfig()
|
/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/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 | 1544 String remotePath = "/data/local/tmp/pkginstalltest-" + localFile.getName(); in pushFileToRemote() local 1545 getDevice().pushFile(localFile, remotePath); in pushFileToRemote() 1546 return remotePath; in pushFileToRemote()
|
/cts/hostsidetests/mediaparser/src/android/media/mediaparser/cts/ |
D | MediaParserHostSideTest.java | 245 String remotePath = "/data/local/tmp/" + configFile.getName(); in uploadConfig() local 247 getDevice().deleteFile(remotePath); in uploadConfig() 248 assertThat(getDevice().pushFile(configFile, remotePath)).isTrue(); in uploadConfig() 251 "cat " + remotePath + " | cmd stats config update " + CONFIG_ID); in uploadConfig() 252 getDevice().deleteFile(remotePath); in uploadConfig()
|
/cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/metrics/ |
D | AtomMetricTester.java | 90 String remotePath = "/data/local/tmp/" + configFile.getName(); in uploadConfig() local 91 mDevice.pushFile(configFile, remotePath); in uploadConfig() 92 mDevice.executeShellCommand(String.format(UPDATE_CONFIG_CMD, remotePath, CONFIG_ID)); in uploadConfig() 93 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/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 | 247 String remotePath = "/data/local/tmp/" + configFile.getName(); in createAndUploadStatsdConfig() local 248 device.pushFile(configFile, remotePath); in createAndUploadStatsdConfig() 249 device.executeShellCommand(String.format(UPDATE_CONFIG_CMD, remotePath, configId)); in createAndUploadStatsdConfig() 250 device.executeShellCommand("rm " + remotePath); in createAndUploadStatsdConfig()
|
/cts/hostsidetests/statsdatom/src/android/cts/statsdatom/statsd/ |
D | AtomTestCase.java | 288 String remotePath = "/data/local/tmp/" + configFile.getName(); in uploadConfig() local 289 getDevice().pushFile(configFile, remotePath); in uploadConfig() 291 String.join(" ", "cat", remotePath, "|", UPDATE_CONFIG_CMD, in uploadConfig() 293 getDevice().executeShellCommand("rm " + remotePath); in uploadConfig()
|