Home | History | Annotate | Download | only in valgrind

Lines Matching defs:subprocess

9 import subprocess
23 """Runs a subprocess in the background. Returns a handle to the process."""
25 return subprocess.Popen(proc)
29 """ Runs a subprocess, until it finishes or |timeout| is exceeded and the
42 # By default, the subprocess is supposed to inherit these from its parent,
48 p = subprocess.Popen(proc, universal_newlines=True,
50 stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
52 logging.info("started subprocess")
75 subprocess.call(["taskkill", "/T", "/F", "/PID", str(p.pid)])
216 TODO(rnk): If we ever want to cut out the subprocess invocation, we can use
221 p = subprocess.Popen(["cygpath", "-m", path],
222 stdout=subprocess.PIPE,
223 stderr=subprocess.PIPE)