Home
last modified time | relevance | path

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

/freebsd/tools/test/hwpmc/
H A Dpmctest.py79 p = subprocess.Popen(["pmcstat", "-p", counter] + program_parts,
85 p = subprocess.Popen(["pmcstat",
92 p = subprocess.Popen(["pmcstat",
101 p = subprocess.Popen(["gprof",
114 p = subprocess.Popen(["pmcstat", "-p", counter] + program_parts,
/freebsd/crypto/krb5/src/util/
H A Dcstyle.py31 from subprocess import Popen, PIPE, call
47 p = Popen(args, stdout=PIPE, stderr=PIPE, universal_newlines=True)
85 p1 = Popen(['cat', filename], stdout=PIPE)
87 p1 = Popen(['git', 'show', rev + ':' + filename], stdout=PIPE)
88 p2 = Popen([sys.executable, 'src/util/cstyle-file.py'], stdin=p1.stdout,
H A Dk5test.py764 proc = subprocess.Popen(args, stdin=infile, stdout=subprocess.PIPE,
831 proc = subprocess.Popen(args, stdin=null_input, stdout=subprocess.PIPE,
/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.py270 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/tests/sys/netpfil/pf/
H A Dreturn.py34 ps = subprocess.Popen(cmd, shell=True)
H A Dicmp.py34 ps = subprocess.Popen(cmd, shell=True)
/freebsd/contrib/googletest/googletest/test/
H A Dgtest_test_utils.py228 p = subprocess.Popen(
/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/tests/sys/netinet/
H A Dip_mroute.py89 return subprocess.Popen(cmd.split(), stdout=subprocess.DEVNULL,
122 return subprocess.Popen(cmd.split(), stdout=subprocess.DEVNULL,
/freebsd/sys/contrib/openzfs/tests/test-runner/bin/
H A Dtest-runner.py.in36 from subprocess import Popen
1087 p = Popen(testcmd)
/freebsd/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/test/
H A Dtest_libzfs_core.py1860 proc = subprocess.Popen(['true'], stdin=subprocess.PIPE)
1866 with subprocess.Popen(['true'], stdin=subprocess.PIPE) as proc:
1882 p = subprocess.Popen(['sleep', '2'], stdin=subprocess.PIPE)
1888 with subprocess.Popen(['sleep', '2'], stdin=subprocess.PIPE) as p: