Home | History | Annotate | Download | only in linux

Lines Matching defs:subprocess

28 import subprocess
38 IS_GIT_WORKSPACE = (subprocess.Popen(
39 ['git', 'rev-parse'], stderr=subprocess.PIPE).wait() == 0)
44 self.cppfilt = subprocess.Popen(['c++filt'],
45 stdin=subprocess.PIPE,
46 stdout=subprocess.PIPE)
65 gitlsfiles = subprocess.Popen(
67 stdout=subprocess.PIPE)
92 gitgrep = subprocess.Popen(
94 stdout=subprocess.PIPE)
132 nm = subprocess.Popen(['nm', '-S', binary], stdout=subprocess.PIPE)
146 objdump = subprocess.Popen(cmd, stdout=subprocess.PIPE)