HomeSort by: relevance | last modified time | path
    Searched defs:subprocess (Results 1 - 21 of 21) sorted by relevancy

  /src/external/mpl/bind/dist/bin/tests/system/dnstap/
ydump.py 21 import subprocess namespace
27 with subprocess.Popen(ARGS, stdout=subprocess.PIPE) as f:
  /src/external/mpl/bind/dist/bin/tests/system/isctest/vars/
features.py 13 import subprocess namespace
47 subprocess.run([feature_test_bin, feature], check=True)
48 except subprocess.CalledProcessError as exc:
algorithms.py 17 import subprocess namespace
131 proc = subprocess.run(
142 stdout=subprocess.DEVNULL,
143 stderr=subprocess.PIPE,
  /src/external/mpl/bind/dist/bin/tests/system/addzone/
tests_rndc_deadlock.py 14 import subprocess namespace
50 subprocess.run(args + " ".join(command), timeout=10, check=False)
  /src/external/mpl/bind/dist/bin/tests/system/filters/
tests_filter_checkconf.py 14 import subprocess namespace
30 with pytest.raises(subprocess.CalledProcessError):
  /src/external/gpl3/gdb/dist/gdb/contrib/
test_pubnames_and_indexes.py 45 import subprocess namespace
57 readelf = subprocess.Popen(
58 [READELF, "--debug-dump=" + readelf_option, filename], stdout=subprocess.PIPE
79 readelf = subprocess.Popen(
80 [READELF, "--debug-dump=gdb_index", filename], stdout=subprocess.PIPE
169 subprocess.check_call(
172 subprocess.check_call(
184 subprocess.check_call(
  /src/external/gpl3/gdb/dist/gdb/
copyright.py 40 import subprocess namespace
53 subprocess.check_output(
100 p = subprocess.Popen(
102 stdout=subprocess.PIPE,
103 stderr=subprocess.STDOUT,
  /src/external/mpl/bind/dist/bin/tests/system/doth/
tests_gnutls.py 16 import subprocess namespace
53 with open("gnutls-cli.err", "wb") as gnutls_cli_stderr, subprocess.Popen(
55 stdin=subprocess.PIPE,
56 stdout=subprocess.PIPE,
96 except subprocess.TimeoutExpired:
stress_http_quota.py 20 import subprocess namespace
139 self.sub_process = subprocess.Popen( # pylint: disable=consider-using-with
149 except subprocess.TimeoutExpired:
  /src/external/mpl/bind/dist/bin/tests/system/selfpointedglue/
tests_selfpointedglue.py 13 import subprocess namespace
119 except subprocess.CalledProcessError as _:
  /src/external/mpl/bind/dist/bin/tests/system/isctest/
run.py 15 import subprocess namespace
38 stdout=subprocess.PIPE,
39 stderr=subprocess.PIPE,
46 """Execute a command with given args as subprocess."""
64 proc = subprocess.run(
76 except subprocess.CalledProcessError as exc:
114 with subprocess.Popen(
116 stdout=subprocess.PIPE,
117 stderr=subprocess.STDOUT,
128 raise subprocess.CalledProcessError(returncode, command
    [all...]
mark.py 20 import subprocess namespace
41 subprocess.run([DNSRPS_BIN, "-a"], check=True)
42 except subprocess.CalledProcessError:
  /src/external/mpl/bind/dist/bin/tests/system/shutdown/
tests_shutdown.py 20 import subprocess namespace
53 :type named_proc: subprocess.Popen
126 # subprocess.CompletedProcess, then we check returncode
172 with subprocess.Popen(
  /src/external/gpl3/gdb/dist/sim/common/
gennltvals.py 33 import subprocess namespace
91 result = subprocess.run(
  /src/external/mpl/bind/dist/bin/tests/system/tools/
tests_tools_nsec3hash.py 13 import subprocess namespace
118 with pytest.raises(subprocess.CalledProcessError):
123 with pytest.raises(subprocess.CalledProcessError):
157 with pytest.raises(subprocess.CalledProcessError):
169 with pytest.raises(subprocess.CalledProcessError):
  /src/external/bsd/zstd/dist/tests/fuzz/
fuzz.py 19 import subprocess namespace
185 cc_version_bytes = subprocess.check_output([cc, "--version"])
186 cxx_version_bytes = subprocess.check_output([cxx, "--version"])
498 subprocess.check_call(clean_cmd)
510 subprocess.check_call(build_cmd)
577 subprocess.check_call(cmd)
647 subprocess.call(cmd)
668 subprocess.check_call(cmd)
767 subprocess.check_call(cmd)
791 subprocess.check_call(cmd
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/
conftest.py 18 import subprocess namespace
543 except subprocess.CalledProcessError as exc:
552 except subprocess.CalledProcessError:
573 except subprocess.CalledProcessError as exc:
583 except subprocess.CalledProcessError as exc:
590 except subprocess.CalledProcessError as exc:
600 except subprocess.CalledProcessError as exc:
  /src/external/mpl/bind/dist/bin/tests/system/kasp/
tests_kasp.py 16 import subprocess namespace
1142 response = ns3.rndc(test["command"], stderr=subprocess.STDOUT)
  /src/external/bsd/ppp/dist/pppd/
main.c 221 struct subprocess { struct
227 struct subprocess *next;
230 static struct subprocess *children;
661 struct subprocess *chp;
1524 struct subprocess *chp;
2009 struct subprocess *chp;
2013 chp = (struct subprocess *) malloc(sizeof(struct subprocess));
2034 struct subprocess *chp;
2050 struct subprocess *chp, **prevp
    [all...]
  /src/external/mpl/bind/dist/contrib/gitchangelog/
gitchangelog.py 49 from subprocess import Popen, PIPE
100 import subprocess namespace
251 class Popen(subprocess.Popen):
283 if not isinstance(args, subprocess.types.StringTypes):
284 args = subprocess.list2cmdline(args)
287 startupinfo = subprocess.STARTUPINFO()
  /src/crypto/external/bsd/openssh/dist/
misc.c 2752 * Runs command in a subprocess with a minimal environment.
2761 subprocess(const char *tag, const char *command, function

Completed in 35 milliseconds