Home
last modified time | relevance | path

Searched refs:PIPE (Results 1 – 12 of 12) sorted by relevance

/f-stack/app/nginx-1.16.1/auto/cc/
H A Dgcc35 PIPE="-pipe"
123 CFLAGS="$CFLAGS $PIPE $CPU_OPT"
126 PCRE_OPT="-O2 -fomit-frame-pointer $PIPE $CPU_OPT"
128 PCRE_OPT="$PCRE_OPT $PIPE"
132 ZLIB_OPT="-O2 -fomit-frame-pointer $PIPE $CPU_OPT"
134 ZLIB_OPT="$ZLIB_OPT $PIPE"
/f-stack/dpdk/app/test/
H A Dtest_sched.c21 #define PIPE 1 macro
112 vlan2->vlan_tci = rte_cpu_to_be_16(PIPE); in prepare_pkt()
117 rte_sched_port_pkt_write(port, mbuf, SUBPORT, PIPE, TC, QUEUE, in prepare_pkt()
182 TEST_ASSERT_EQUAL(pipe, PIPE, "Wrong pipe\n"); in test_sched()
/f-stack/dpdk/buildtools/
H A Dcall-sphinx-build.py9 from subprocess import run, PIPE, STDOUT
19 ver = run([sphinx, '--version'], stdout=PIPE,
/f-stack/freebsd/contrib/device-tree/Bindings/pci/
H A Dqcom,pcie.txt143 - "pipe" PIPE clock
173 - "pipe" PIPE reset
179 - "pipe_sticky" PIPE sticky reset
189 - "pipe" PIPE reset
204 - "pipe_sticky" PIPE sticky reset
/f-stack/freebsd/contrib/device-tree/Bindings/phy/
H A Dphy-tegra194-p2u.txt5 A P2U instance is a glue logic between Synopsys DesignWare Core PCIe IP's PIPE
/f-stack/freebsd/contrib/openzfs/cmd/arc_summary/
H A Darc_summary254 from subprocess import Popen, PIPE
1048 p = Popen(command, stdin=PIPE, stdout=PIPE,
1049 stderr=PIPE, shell=False, close_fds=True)
H A Darc_summary3171 info = subprocess.run(command, stdout=subprocess.PIPE,
205 info = subprocess.run(command, stdout=subprocess.PIPE,
/f-stack/freebsd/contrib/device-tree/Bindings/usb/
H A Domap-usb.txt55 - utmi-mode : controls the source of UTMI/PIPE status for VBUS and OTG ID.
/f-stack/tools/libnetgraph/
H A Ddebug.c166 COOKIE(PIPE),
/f-stack/freebsd/contrib/openzfs/tests/test-runner/bin/
H A Dtest-runner.py.in36 from subprocess import PIPE
280 proc = Popen(privcmd, stdout=PIPE, stderr=PIPE)
/f-stack/tools/
H A DREADME.md194 {pipe|queue} N config PIPE-BODY
/f-stack/freebsd/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: