HomeSort by: relevance | last modified time | path
    Searched refs:pipe (Results 1 - 25 of 341) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libc/sys/
Lint_pipe.c 12 pipe(int filedes[2]) function in typeref:typename:int
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_fifo_underrun.h 18 enum pipe pipe, bool enable);
20 enum pipe pch_transcoder,
23 enum pipe pipe);
25 enum pipe pch_transcoder);
intel_crt.h 14 #define pipe pipe_drmhack /* see intel_display.h */ macro
16 enum pipe;
22 i915_reg_t adpa_reg, enum pipe *pipe);
intel_lpe_audio.h 14 #define pipe pipe_drmhack /* see intel_display.h */ macro
16 enum pipe;
24 enum pipe pipe, enum port port,
intel_lvds.h 16 #define pipe pipe_drmhack /* see intel_display.h */ macro
18 enum pipe;
22 i915_reg_t lvds_reg, enum pipe *pipe);
intel_sdvo.h 18 #define pipe pipe_drmhack /* see intel_display.h */ macro
21 enum pipe;
25 i915_reg_t sdvo_reg, enum pipe *pipe);
intel_fifo_underrun.c 48 * occurrence until the next modeset on a given pipe.
51 * is no interrupt (despite that the signalling bit is in the PIPESTAT pipe
63 enum pipe pipe; local in function:ivb_can_enable_err_int
67 for_each_pipe(dev_priv, pipe) {
68 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
80 enum pipe pipe; local in function:cpt_can_enable_serr_int
85 for_each_pipe(dev_priv, pipe) {
86 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
150 enum pipe pipe = crtc->pipe; local in function:ivb_check_fifo_underruns
    [all...]
  /src/sys/external/mit/xen-include-public/dist/xen/include/public/io/
usbif.h 112 * USB pipe in usbif_request
129 * - pipe type: bits 30-31
148 #define usbif_pipeportnum(pipe) ((pipe) & USBIF_PIPE_PORT_MASK)
149 #define usbif_setportnum_pipe(pipe, portnum) ((pipe) | (portnum))
151 #define usbif_pipeunlink(pipe) ((pipe) & USBIF_PIPE_UNLINK)
152 #define usbif_pipesubmit(pipe) (!usbif_pipeunlink(pipe))
189 uint32_t pipe; member in struct:usbif_urb_request
    [all...]
  /src/lib/libc/arch/alpha/sys/
pipe.S 1 /* $NetBSD: pipe.S,v 1.4 2001/05/07 17:19:18 kleink Exp $ */
33 WEAK_ALIAS(pipe, _pipe)
37 CALLSYS_ERROR(pipe)
  /src/sys/kern/
sys_pipe.c 80 #include <sys/pipe.h>
94 .fo_name = "pipe",
109 * Default pipe buffer size(s), this can be kind-of large now because pipe
110 * space is pageable. The pipe code will try to maintain locality of
125 * Amount of KVA consumed by pipe buffers.
129 static void pipeclose(struct pipe *);
130 static void pipe_free_kmem(struct pipe *);
131 static int pipe_create(struct pipe **, pool_cache_t, struct timespec *);
132 static int pipelock(struct pipe *, bool)
160 struct pipe *pipe; local in function:pipe_ctor
187 struct pipe *pipe; local in function:pipe_dtor
308 struct pipe *pipe; local in function:pipe_create
758 struct pipe *pipe = fp->f_pipe; local in function:pipe_ioctl
864 struct pipe *pipe = fp->f_pipe; local in function:pipe_stat
891 struct pipe *pipe = fp->f_pipe; local in function:pipe_close
901 struct pipe *pipe = fp->f_pipe; local in function:pipe_restart
1035 struct pipe *pipe; local in function:filt_pipedetach
1136 struct pipe *pipe; local in function:pipe_kqfilter
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/
drm_vblank.c 93 drm_get_last_vbltimestamp(struct drm_device *dev, unsigned int pipe,
105 static void store_vblank(struct drm_device *dev, unsigned int pipe,
109 struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
121 static u32 drm_max_vblank_count(struct drm_device *dev, unsigned int pipe)
123 struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
132 static u32 drm_vblank_no_hw_counter(struct drm_device *dev, unsigned int pipe)
134 WARN_ON_ONCE(drm_max_vblank_count(dev, pipe) != 0);
138 static u32 __get_vblank_counter(struct drm_device *dev, unsigned int pipe)
141 struct drm_crtc *crtc = drm_crtc_from_index(dev, pipe);
151 return dev->driver->get_vblank_counter(dev, pipe);
343 unsigned int pipe = drm_crtc_index(crtc); local in function:drm_crtc_accurate_vblank_count
440 unsigned int pipe = vblank->pipe; local in function:vblank_disable_fn
453 unsigned int pipe; local in function:drm_vblank_cleanup
564 unsigned int pipe = drm_crtc_index(crtc); local in function:drm_calc_timestamping_constants
959 unsigned int pipe = drm_crtc_index(crtc); local in function:drm_crtc_arm_vblank_event
985 unsigned int pipe = drm_crtc_index(crtc); local in function:drm_crtc_send_vblank_event
1241 unsigned int pipe = drm_crtc_index(crtc); local in function:drm_crtc_vblank_off
1310 unsigned int pipe = drm_crtc_index(crtc); local in function:drm_crtc_vblank_reset
1348 unsigned int pipe = drm_crtc_index(crtc); local in function:drm_crtc_set_max_vblank_count
1371 unsigned int pipe = drm_crtc_index(crtc); local in function:drm_crtc_vblank_on
1520 unsigned int pipe; local in function:drm_legacy_modeset_ctl_ioctl
1684 unsigned int flags, pipe, high_pipe; local in function:drm_wait_vblank_ioctl
1945 int pipe; local in function:drm_crtc_get_sequence_ioctl
1999 int pipe; local in function:drm_crtc_queue_sequence_ioctl
    [all...]
  /src/lib/libc/arch/mips/sys/
pipe.S 1 /* $NetBSD: pipe.S,v 1.12 2009/12/14 01:07:42 matt Exp $ */
39 RCSID("from: @(#)pipe.s 8.1 (Berkeley) 6/4/93")
41 RCSID("$NetBSD: pipe.S,v 1.12 2009/12/14 01:07:42 matt Exp $")
46 WEAK_ALIAS(pipe, _pipe)
52 SYSTRAP(pipe) # pipe(fildes) int fildes[2];
  /src/lib/libc/arch/riscv/sys/
pipe.S 1 /* $NetBSD: pipe.S,v 1.2 2015/03/27 06:44:28 matt Exp $ */
35 RCSID("$NetBSD: pipe.S,v 1.2 2015/03/27 06:44:28 matt Exp $")
39 WEAK_ALIAS(pipe, _pipe)
44 SYSTRAP(pipe) # pipe(fildes) int fildes[2];
  /src/lib/libc/arch/i386/sys/
pipe.S 1 /* $NetBSD: pipe.S,v 1.7 2014/05/23 02:34:19 uebayasi Exp $ */
34 * from: @(#)pipe.s 5.1 (Berkeley) 4/23/90
39 RCSID("$NetBSD: pipe.S,v 1.7 2014/05/23 02:34:19 uebayasi Exp $")
45 WEAK_ALIAS(pipe, _pipe)
48 _SYSCALL(_pipe,pipe)
  /src/lib/libc/arch/m68k/sys/
pipe.S 1 /* $NetBSD: pipe.S,v 1.8 2013/07/16 22:16:53 matt Exp $ */
40 RCSID("from: @(#)pipe.s 5.1 (Berkeley) 5/12/90")
42 RCSID("$NetBSD: pipe.S,v 1.8 2013/07/16 22:16:53 matt Exp $")
47 WEAK_ALIAS(pipe, _pipe)
50 _SYSCALL(_pipe,pipe)
  /src/lib/libc/arch/sh3/sys/
pipe.S 1 /* $NetBSD: pipe.S,v 1.7 2006/01/06 05:23:46 uwe Exp $ */
34 * from: @(#)pipe.s 5.1 (Berkeley) 4/23/90
39 RCSID("$NetBSD: pipe.S,v 1.7 2006/01/06 05:23:46 uwe Exp $")
45 WEAK_ALIAS(pipe,_pipe)
48 _SYSCALL(_pipe,pipe)
  /src/lib/libc/arch/vax/sys/
pipe.S 33 /* .asciz "@(#)pipe.s 8.1 (Berkeley) 6/4/93" */
34 RCSID("$NetBSD: pipe.S,v 1.5 2011/01/25 02:38:15 matt Exp $")
38 WEAK_ALIAS(pipe, _pipe)
41 _SYSCALL(_pipe,pipe)
  /src/lib/libc/arch/x86_64/sys/
pipe.S 1 /* $NetBSD: pipe.S,v 1.3 2014/05/22 15:01:57 uebayasi Exp $ */
34 * from: @(#)pipe.s 5.1 (Berkeley) 4/23/90
39 RCSID("$NetBSD: pipe.S,v 1.3 2014/05/22 15:01:57 uebayasi Exp $")
45 WEAK_ALIAS(pipe, _pipe)
48 _SYSCALL(_pipe,pipe)
  /src/lib/libc/arch/aarch64/sys/
pipe.S 1 /* $NetBSD: pipe.S,v 1.2 2018/02/04 18:32:31 skrll Exp $ */
34 WEAK_ALIAS(pipe, _pipe)
38 SYSTRAP(pipe)
  /src/lib/libc/arch/arm/sys/
pipe.S 1 /* $NetBSD: pipe.S,v 1.8 2013/08/16 22:21:59 matt Exp $ */
31 * from: @(#)pipe.s 5.1 (Berkeley) 4/23/90
37 WEAK_ALIAS(pipe, _pipe)
42 SYSTRAP(pipe)
  /src/lib/libc/arch/ia64/sys/
pipe.S 1 /* $NetBSD: pipe.S,v 1.2 2006/09/23 17:39:34 cherry Exp $ */
31 /* __FBSDID("$FreeBSD: src/lib/libc/ia64/sys/pipe.S,v 1.4 2003/05/16 21:26:39 marcel Exp $"); */
36 WEAK_ALIAS(pipe, _pipe)
42 CALLSYS_ERROR(pipe)
  /src/sys/external/bsd/drm2/dist/drm/r128/
r128_irq.c 45 u32 r128_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
49 if (pipe != 0)
73 int r128_enable_vblank(struct drm_device *dev, unsigned int pipe)
77 if (pipe != 0) {
78 DRM_ERROR("%s: bad crtc %u\n", __func__, pipe);
86 void r128_disable_vblank(struct drm_device *dev, unsigned int pipe)
88 if (pipe != 0)
89 DRM_ERROR("%s: bad crtc %u\n", __func__, pipe);
  /src/sys/external/bsd/drm2/i915drm/
intel_lpe_audio.c 58 intel_lpe_audio_notify(struct drm_i915_private *dev_priv, enum pipe pipe,
  /src/tests/fs/tmpfs/
t_pipes.sh 38 atf_check -s exit:0 -o empty -e empty mknod pipe p
40 echo "Writing to pipe and waiting for response"
41 echo -n foo >pipe &
42 [ "$(cat pipe)" = foo ] || atf_fail "Received data is incorrect"
  /src/sys/dev/usb/
usbdi.c 67 SDT_PROBE_DEFINE5(usb, device, pipe, open,
72 "struct usbd_pipe *"/*pipe*/);
74 SDT_PROBE_DEFINE7(usb, device, pipe, open__intr,
81 "struct usbd_pipe *"/*pipe*/);
83 SDT_PROBE_DEFINE2(usb, device, pipe, transfer__start,
84 "struct usbd_pipe *"/*pipe*/,
86 SDT_PROBE_DEFINE3(usb, device, pipe, transfer__done,
87 "struct usbd_pipe *"/*pipe*/,
90 SDT_PROBE_DEFINE2(usb, device, pipe, start,
91 "struct usbd_pipe *"/*pipe*/,
373 struct usbd_pipe *pipe = xfer->ux_pipe; local in function:usbd_transfer
873 struct usbd_pipe *pipe = arg; local in function:usbd_clear_endpoint_stall_task
1109 struct usbd_pipe *pipe = xfer->ux_pipe; local in function:usb_transfer_complete
    [all...]

Completed in 50 milliseconds

1 2 3 4 5 6 7 8 91011>>