Home | History | Annotate | Download | only in testrunner

Lines Matching full:path

20 Assumes adb binary is currently on system path.
93 def BugReport(self, path):
94 """Dumps adb bugreport to the file specified by the path.
97 path: Path of the file where adb bugreport is dumped to.
100 bugreport_file = open(path, "w")
108 src: file path of host file to push
109 dest: destination absolute file path on device
117 src: absolute file path of file on device to pull
118 dest: destination file path on host
124 if not os.path.exists(os.path.dirname(dest)):
125 os.makedirs(os.path.dirname(dest))
135 """Checks if the given path exists on device target.
138 src: file path to be checked.
156 Equivalent to StartInstrumentation, except instrumentation path is
309 # assume the 'adb shell pm path android' command will always
311 output = self.SendShellCommand("pm path android", retry_count=1)