Home
last modified time | relevance | path

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

/aosp12/packages/modules/StatsD/tests/src/android/cts/statsd/subscriber/
H A DShellSubscriberTest.java128 String remotePath = "/data/local/tmp/" + configFile.getName(); in startSubscription() local
129 getDevice().pushFile(configFile, remotePath); in startSubscription()
132 String cmd = String.join(" ", "cat", remotePath, "|", "cmd stats data-subscribe", in startSubscription()
139 getDevice().executeShellCommand("rm " + remotePath); in startSubscription()
/aosp12/frameworks/base/tests/ApkVerityTest/src/com/android/apkverity/
H A DBaseInstallMultiple.java113 final String remotePath = "/data/local/tmp/" + file.getName(); in run() local
114 if (!device.pushFile(file, remotePath)) { in run()
122 cmd.append(' ').append(remotePath); in run()
/aosp12/packages/modules/StatsD/statsd/tools/localtools/src/com/android/statsd/shelltools/testdrive/
H A DTestDrive.java419 String remotePath = "/data/local/tmp/" + configFile.getName(); in pushConfig() local
421 "push", configFile.getAbsolutePath(), remotePath); in pushConfig()
423 "shell", "cat", remotePath, "|", Utils.CMD_UPDATE_CONFIG, in pushConfig()
425 return remotePath; in pushConfig()
/aosp12/packages/modules/StatsD/statsd/tools/localtools/src/com/android/statsd/shelltools/localdrive/
H A DLocalDrive.java233 String remotePath = "/data/local/tmp/statsdconfig.config"; in updateConfig() local
235 Utils.runCommand(null, sLogger, "adb", "push", configLocation, remotePath); in updateConfig()
236 Utils.runCommand(null, sLogger, "adb", "shell", "cat", remotePath, "|", in updateConfig()
/aosp12/packages/modules/StatsD/tests/src/android/cts/statsd/atom/
H A DAtomTestCase.java297 String remotePath = "/data/local/tmp/" + configFile.getName(); in uploadConfig() local
298 getDevice().pushFile(configFile, remotePath); in uploadConfig()
300 String.join(" ", "cat", remotePath, "|", UPDATE_CONFIG_CMD, in uploadConfig()
302 getDevice().executeShellCommand("rm " + remotePath); in uploadConfig()