Lines Matching refs:cmd
219 cmd = []
220 cmd.append(os.path.join(get_android_root_or_die(), LLVM_MERGE + " merge "))
223 cmd.append(os.path.join(test_working_dir, test_name + ".profraw"))
226 cmd.append('-o ' + profdata_file)
228 logging.debug('cmd: ' + " ".join(cmd))
229 if subprocess.call(" ".join(cmd), shell=True) != 0:
243 cmd = [
252 cmd.append(test_cmd)
256 cmd.append(os.path.join(get_android_root_or_die(), filename))
259 logging.debug('cmd: ' + " ".join(cmd))
260 if subprocess.call(" ".join(cmd), shell=True) != 0:
273 cmd = [
283 cmd.append(test_cmd)
287 cmd.append(os.path.join(get_android_root_or_die(), filename))
290 logging.debug('cmd: ' + " ".join(cmd))
292 json_str = subprocess.check_output(" ".join(cmd), shell=True)