Home
last modified time | relevance | path

Searched refs:Popen (Results 1 – 14 of 14) sorted by relevance

/freebsd/tools/test/hwpmc/
H A Dpmctest.py79 p = subprocess.Popen(["pmccontrol", "-L"], stdout=PIPE)
89 p = subprocess.Popen(["pmcstat", "-p", counter, options.program],
/freebsd/tools/regression/netinet/ip_id_period/
H A Dip_id_period.py37 tcpdump = subprocess.Popen('tcpdump -n -i lo0 -w results.pcap icmp', shell=True)
/freebsd/release/scripts/
H A Dlist-new-changesets.py85 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
/freebsd/sbin/ping/tests/
H A Dinjection.py41 ping = subprocess.Popen(
H A Dtest_ping.py242 with subprocess.Popen(
/freebsd/contrib/libpcap/testprogs/
H A Dvisopts.py260 … p = subprocess.Popen(['dot', '-Tsvg'], stdin=subprocess.PIPE, stdout=subprocess.PIPE)
/freebsd/tests/atf_python/sys/net/
H A Dtools.py27 ps = subprocess.Popen("/sbin/pfctl -g -f -", shell=True,
/freebsd/sys/contrib/openzfs/tests/test-runner/bin/
H A Dtest-runner.py.in33 from subprocess import Popen
201 kp = Popen(cmd)
300 kp = Popen([SUDO, "sh", "-c",
312 kp = Popen([SUDO, "sh", "-c",
324 proc = Popen(privcmd, stdout=PIPE, stderr=PIPE)
1017 p = Popen(testcmd)
/freebsd/contrib/googletest/googletest/test/
H A Dgtest_test_utils.py228 p = subprocess.Popen(
/freebsd/tests/sys/netpfil/pf/
H A Dicmp.py34 ps = subprocess.Popen(cmd, shell=True)
/freebsd/usr.bin/mail/
H A Dextern.h44 FILE *Popen(char *, const char *);
H A Dcmd1.c307 obuf = Popen(cp, "w"); in type1()
H A Dpopen.c96 Popen(char *cmd, const char *mode) in Popen() function
/freebsd/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/test/
H A Dtest_libzfs_core.py1859 proc = subprocess.Popen(['true'], stdin=subprocess.PIPE)
1865 with subprocess.Popen(['true'], stdin=subprocess.PIPE) as proc:
1881 p = subprocess.Popen(['sleep', '2'], stdin=subprocess.PIPE)
1887 with subprocess.Popen(['sleep', '2'], stdin=subprocess.PIPE) as p: