Home
last modified time | relevance | path

Searched refs:ADB_CMD (Results 1 – 2 of 2) sorted by relevance

/system/extras/ioblame/
Dioblame.py44 ADB_CMD = "adb" variable
112 global ADB_CMD
113 ADB_CMD = "%s %s" % ("adb -s", args.serial)
129 r = subprocess.check_output(ADB_CMD + " " + cmd, shell=True)
144 ADB_CMD + " shell " + cmd, shell=True, capture_output=True)
155 return subprocess.Popen(ADB_CMD + " shell " + cmd, shell=True)
/system/extras/boottime_tools/bootanalyze/
Dbootanalyze.py50 ADB_CMD = "adb" variable
59 global ADB_CMD
71 ADB_CMD = "%s %s" % ("adb -s", args.serial)
264 os.system(ADB_CMD + " bugreport " + bugreport_file)
320 dmesg_events, kernel_timing_events = collect_events(search_events_pattern, ADB_CMD +\
351 search_events_pattern, ADB_CMD + ' logcat -b all -v epoch', timings_pattern,\
617 process = subprocess.Popen(ADB_CMD + ' logcat -b all -v epoch', shell=True,
757 cmd = ADB_CMD + ' shell su root getprop'
867 … return subprocess.check_output(ADB_CMD + ' ' + cmd, shell=True).decode('utf-8', 'ignore').strip()
868 subprocess.call(ADB_CMD + ' ' + cmd, shell=True)