Lines Matching refs:args
9 self.args = arg
11 def am(serial, cmd, args): argument
12 if not isinstance(args, list):
13 args = [args]
14 full_args = ["am"] + [cmd] + args
17 def pm(serial, cmd, args): argument
18 if not isinstance(args, list):
19 args = [args]
20 full_args = ["pm"] + [cmd] + args
29 args = [ATRACE_PATH, "-e", serial, "-t" + time, "-b32768"] + tags
30 subprocess.call(args)
48 …threading.Thread(target=__track_logcat, name=serial + "-waiter", args=(serial, awaited_string, cal…
50 def __call_adb(serial, args, block): argument
51 full_args = ["adb", "-s", serial, "wait-for-device", "shell"] + args
60 raise AdbError("Error calling " + " ".join(args))