Searched refs:pipe (Results 51 - 75 of 300) sorted by relevance

1234567891011>>

/freebsd-11-stable/tests/sys/kern/pipe/
H A Dbig_pipe_test.c10 #define BIG_PIPE_SIZE 64*1024 /* From sys/pipe.h */
13 * Test for the non-blocking big pipe bug (write(2) returning
53 if (pipe(fd) < 0)
54 errx(1, "pipe failed");
/freebsd-11-stable/tools/regression/capsicum/syscalls/
H A DMakefile5 CFLAGS= -O2 -pipe -std=gnu99 -fstack-protector
/freebsd-11-stable/sys/fs/fifofs/
H A Dfifo_vnops.c47 #include <sys/pipe.h>
64 struct pipe *fi_pipe;
140 struct pipe *fpipe;
159 KASSERT(fpipe != NULL, ("fifo_open: pipe is NULL"));
162 * Use the pipe mutex here, in addition to the vnode lock,
271 struct pipe *cpipe;
/freebsd-11-stable/tests/sys/kern/
H A DMakefile56 TESTS_SUBDIRS+= pipe
/freebsd-11-stable/lib/libdpv/
H A Dutil.c81 /* Open a pipe to communicate with [X]dialog(1) */
82 if (pipe(stdin_pipe) < 0)
83 err(EXIT_FAILURE, "%s: pipe(2)", __func__);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DOperatorPrecedence.cpp57 case tok::pipe: return prec::InclusiveOr;
/freebsd-11-stable/sys/dev/drm2/i915/
H A Di915_suspend.c35 static bool i915_pipe_enabled(struct drm_device *dev, enum pipe pipe) argument
40 /* On IVB, 3rd pipe shares PLL with another one */
41 if (pipe > 1)
45 dpll_reg = _PCH_DPLL(pipe);
47 dpll_reg = (pipe == PIPE_A) ? _DPLL_A : _DPLL_B;
52 static void i915_save_palette(struct drm_device *dev, enum pipe pipe) argument
55 unsigned long reg = (pipe == PIPE_A ? _PALETTE_A : _PALETTE_B);
59 if (!i915_pipe_enabled(dev, pipe))
74 i915_restore_palette(struct drm_device *dev, enum pipe pipe) argument
[all...]
H A Dintel_lvds.c70 enum pipe *pipe)
88 *pipe = PORT_TO_PIPE_CPT(tmp);
90 *pipe = PORT_TO_PIPE(tmp);
122 * adjusted whilst the pipe is disabled, according to
139 intel_panel_enable_backlight(dev, intel_crtc->pipe);
259 int pipe; local
262 if (INTEL_INFO(dev)->gen < 4 && intel_crtc->pipe == 0) {
263 DRM_ERROR("Can't support LVDS on pipe A\n");
293 pfit_control |= ((intel_crtc->pipe << PFIT_PIPE_SHIF
69 intel_lvds_get_hw_state(struct intel_encoder *encoder, enum pipe *pipe) argument
941 int pipe; local
[all...]
H A Dintel_dp.c778 int pipe = intel_crtc->pipe; local
820 I915_WRITE(TRANSDATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
821 I915_WRITE(TRANSDATA_N1(pipe), m_n.gmch_n);
822 I915_WRITE(TRANSDPLINK_M1(pipe), m_n.link_m);
823 I915_WRITE(TRANSDPLINK_N1(pipe), m_n.link_n);
825 I915_WRITE(PIPE_DATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
826 I915_WRITE(PIPE_DATA_N1(pipe), m_n.gmch_n);
827 I915_WRITE(PIPE_LINK_M1(pipe), m_n.link_m);
828 I915_WRITE(PIPE_LINK_N1(pipe), m_
1182 int pipe = to_intel_crtc(intel_dig_port->base.base.crtc)->pipe; local
1304 intel_dp_get_hw_state(struct intel_encoder *encoder, enum pipe *pipe) argument
[all...]
H A Dintel_pm.c414 * - more than one pipe is active
423 DRM_DEBUG_KMS("more than one pipe active, disabling compression\n");
523 * disabling the FBC. However, along all current pipe
1728 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
1742 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
1813 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
1827 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
1916 DRM_DEBUG_KMS("FIFO watermarks For pipe A -"
1930 DRM_DEBUG_KMS("FIFO watermarks For pipe B -"
1944 DRM_DEBUG_KMS("FIFO watermarks For pipe
2021 haswell_update_linetime_wm(struct drm_device *dev, int pipe, struct drm_display_mode *mode) argument
2123 sandybridge_update_sprite_wm(struct drm_device *dev, int pipe, uint32_t sprite_width, int pixel_size) argument
2242 intel_update_linetime_watermarks(struct drm_device *dev, int pipe, struct drm_display_mode *mode) argument
2251 intel_update_sprite_watermarks(struct drm_device *dev, int pipe, uint32_t sprite_width, int pixel_size) argument
3574 int pipe; local
3604 int pipe; local
3754 int pipe; local
3812 int pipe; local
3909 int pipe; local
[all...]
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_irq.c813 e->base.pid, e->pipe, e->event.sequence);
997 if (e->pipe != crtc)
1003 drm_vblank_put(dev, e->pipe);
1109 static int drm_queue_vblank_event(struct drm_device *dev, int pipe, argument
1124 e->pipe = pipe;
1141 seq = drm_vblank_count_and_time(dev, pipe, &now);
1150 vblwait->request.sequence, seq, pipe);
1152 CTR4(KTR_DRM, "vblank_event_queued %d %d rt %x %d", curproc->p_pid, pipe,
1157 drm_vblank_put(dev, pipe);
[all...]
/freebsd-11-stable/bin/sh/tests/parser/
H A DMakefile25 ${PACKAGE}FILES+= and-pipe-not.0
81 ${PACKAGE}FILES+= pipe-not1.0
/freebsd-11-stable/contrib/netbsd-tests/kernel/
H A Dt_ptrace.c150 uint8_t msg = 0xde; /* dummy message for IPC based on pipe(2) */
159 ATF_REQUIRE(pipe(fds_toparent) == 0);
160 ATF_REQUIRE(pipe(fds_fromparent) == 0);
/freebsd-11-stable/sys/dev/netmap/
H A Dnetmap_pipe.c87 /* allocate the pipe array in the parent adapter */
119 nm_prerr("freeing not empty pipe array for %s (%d dangling pipes)!",
129 /* find a pipe endpoint with the given id among the parent's pipes */
141 KASSERT(na_pipe_id != NULL, ("Invalid pipe name"));
150 /* add a new pipe endpoint to the parent array */
167 /* remove the given pipe endpoint from the parent array */
185 struct netmap_kring *rxkring = txkring->pipe;
238 struct netmap_kring *txkring = rxkring->pipe;
337 k1->pipe = k2;
338 k2->pipe
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Dfilter_fork_posix.c93 if (pipe(stdin_pipe) == -1)
101 if (pipe(stdout_pipe) == -1)
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-ilk.h75 unsigned int pipe; member in struct:__anon8581
/freebsd-11-stable/contrib/netbsd-tests/rump/rumpkern/
H A Dt_kern.c62 RL(pipe(pipetti));
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dsimple_exec.c153 pipe(in_fd);
155 pipe(out_fd);
157 pipe(err_fd);
175 /* pipe everything caller doesn't care about to /dev/null */
/freebsd-11-stable/sys/security/mac/
H A Dmac_pipe.c55 #include <sys/pipe.h>
113 MAC_POLICY_EXTERNALIZE(pipe, label, elements, outbuf, outbuflen);
123 MAC_POLICY_INTERNALIZE(pipe, label, string);
/freebsd-11-stable/tests/sys/file/
H A Dflock_helper.c185 * test. We use a pipe to communicate with the child.
193 if (pipe(pfd) < 0)
194 err(1, "pipe");
214 err(1, "writing to pipe (child)");
224 err(1, "reading from pipe (child)");
256 * test. We use a pipe to communicate with the child.
264 if (pipe(pfd) < 0)
265 err(1, "pipe");
285 err(1, "writing to pipe (child)");
295 err(1, "reading from pipe (chil
[all...]
/freebsd-11-stable/sys/compat/ndis/
H A Dsubr_usbd.c95 .endpoint = 0x00, /* control pipe */
105 .endpoint = 0x00, /* control pipe */
514 struct usbd_pipe_information *pipe; local
549 pipe = &intf->uii_pipes[j];
550 pipe->upi_handle = edesc;
551 pipe->upi_epaddr = edesc->bEndpointAddress;
552 pipe->upi_maxpktsize = UGETW(edesc->wMaxPacketSize);
553 pipe->upi_type = UE_GET_XFERTYPE(edesc->bmAttributes);
559 if (pipe->upi_type != UE_INTERRUPT)
564 pipe
1330 struct usbd_pipe_information *pipe; local
[all...]
/freebsd-11-stable/sys/netpfil/ipfw/
H A Dip_fw_table_value.c113 _MCPY(pipe, IPFW_VTYPE_PIPE);
616 v->pipe = value;
652 v.pipe = iv->pipe;
678 iv.pipe = v->pipe;
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_poll.c103 pipe(pf);
162 ATF_REQUIRE_EQ(pipe(fds), 0);
171 * of our pipe.
180 /* Check that the write end of the pipe as reported as ready. */
189 /* Check that only the write end of the pipe as reported as ready. */
198 /* Write data to our pipe. */
201 /* Check that both ends of our pipe are reported as ready. */
252 ATF_REQUIRE_EQ(pipe(fds), 0);
265 * of our pipe.
274 /* Check that the write end of the pipe a
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DTokenConcatenation.cpp82 TokenInfo[tok::pipe ] |= aci_custom_firstchar;
116 TokenInfo[tok::pipe ] |= aci_avoid_equal; // |=
283 case tok::pipe: // ||
/freebsd-11-stable/contrib/netbsd-tests/lib/librumphijack/
H A Dh_client.c59 if (pipe(pipefd) == -1)
60 err(EXIT_FAILURE, "pipe");

Completed in 191 milliseconds

1234567891011>>