| /src/lib/libc/sys/ |
| Lint_pipe.c | 12 pipe(int filedes[2]) function
|
| /src/sys/external/bsd/drm2/dist/drm/i915/display/ |
| 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_dp.h | 19 #define pipe pipe_drmhack /* see intel_display.h */ macro 21 enum pipe; 47 enum pipe *pipe);
|
| intel_connector.c | 160 enum pipe pipe = 0; local 163 return encoder->get_hw_state(encoder, &pipe); 166 enum pipe intel_connector_get_pipe(struct intel_connector *connector) 175 return to_intel_crtc(connector->base.state->crtc)->pipe;
|
| intel_dsb.c | 29 * DSB's can access only the pipe, plane, and transcoder Data Island Packet 48 enum pipe pipe = crtc->pipe; local 50 return DSB_STATUS & I915_READ(DSB_CTRL(pipe, dsb->id)); 57 enum pipe pipe = crtc->pipe; local 60 dsb_ctrl = I915_READ(DSB_CTRL(pipe, dsb->id)); 67 I915_WRITE(DSB_CTRL(pipe, dsb->id), dsb_ctrl) 77 enum pipe pipe = crtc->pipe; local 310 enum pipe pipe = crtc->pipe; local [all...] |
| /src/external/gpl2/xcvs/dist/lib/ |
| unistd--.h | 27 #undef pipe macro 28 #define pipe pipe_safer macro
|
| /src/external/gpl3/gdb/dist/gnulib/import/ |
| pipe.c | 1 /* Create a pipe. 32 pipe (int fd[2]) function 48 # error "This platform lacks a pipe function, and Gnulib doesn't provide a replacement. This is a bug in Gnulib."
|
| unistd--.h | 26 #undef pipe macro 27 #define pipe pipe_safer macro
|
| /src/external/gpl3/gdb.old/dist/gnulib/import/ |
| pipe.c | 1 /* Create a pipe. 32 pipe (int fd[2]) function 48 # error "This platform lacks a pipe function, and Gnulib doesn't provide a replacement. This is a bug in Gnulib."
|
| unistd--.h | 26 #undef pipe macro 27 #define pipe pipe_safer macro
|
| /src/tests/kernel/kqueue/read/ |
| t_pipe.c | 46 ATF_TC(pipe); variable 47 ATF_TC_HEAD(pipe, tc) 51 ATF_TC_BODY(pipe, tc) 58 RL(pipe(fds)); 64 /* make sure there is something in the pipe */ 66 (void)printf("pipe: wrote 'foo' to pipe\n"); 75 (void)printf("pipe: read '%s'\n", buffer); 76 (void)printf("pipe: successful end\n"); 81 ATF_TP_ADD_TC(tp, pipe); [all...] |
| /src/sys/external/bsd/drm2/dist/include/drm/ |
| intel_lpe_audio.h | 32 #define pipe pipe_drmhack /* see intel_display.h */ macro 45 int pipe; member in struct:intel_hdmi_lpe_audio_port_pdata
|
| drm_vblank.h | 32 #define pipe pipe_drmhack /* see intel_display.h */ macro 60 * @pipe: drm_crtc_index() of the &drm_crtc this event is for. 62 unsigned int pipe; member in struct:drm_pending_vblank_event 185 * @pipe: drm_crtc_index() of the &drm_crtc corresponding to this 188 unsigned int pipe; member in struct:drm_vblank_crtc 233 bool drm_handle_vblank(struct drm_device *dev, unsigned int pipe); 239 void drm_wait_one_vblank(struct drm_device *dev, unsigned int pipe); 245 void drm_vblank_restore(struct drm_device *dev, unsigned int pipe); 249 unsigned int pipe, int *max_error,
|
| /src/external/mit/libuv/dist/docs/code/multi-echo-server/ |
| worker.c | 59 uv_pipe_t *pipe = (uv_pipe_t*) q; local 60 if (!uv_pipe_pending_count(pipe)) { 65 uv_handle_type pending = uv_pipe_pending_type(pipe);
|
| /src/external/mit/libuv/dist/test/ |
| test-getters-setters.c | 37 ASSERT_OK(strcmp(uv_handle_type_name(UV_NAMED_PIPE), "pipe")); 60 uv_pipe_t* pipe; local 73 pipe = malloc(uv_handle_size(UV_NAMED_PIPE)); 74 r = uv_pipe_init(loop, pipe, 0); 76 ASSERT_EQ(uv_handle_get_type((uv_handle_t*)pipe), UV_NAMED_PIPE); 78 ASSERT_PTR_EQ(uv_handle_get_loop((uv_handle_t*)pipe), loop); 79 pipe->data = &cookie2; 80 ASSERT_PTR_EQ(uv_handle_get_data((uv_handle_t*)pipe), &cookie2); 81 uv_handle_set_data((uv_handle_t*)pipe, &cookie1); 82 ASSERT_PTR_EQ(uv_handle_get_data((uv_handle_t*)pipe), &cookie1) [all...] |
| test-handle-fileno.c | 53 uv_pipe_t pipe; local 91 r = uv_pipe_init(loop, &pipe, 0); 93 r = uv_fileno((uv_handle_t*) &pipe, &fd); 95 r = uv_pipe_bind(&pipe, TEST_PIPENAME); 97 r = uv_fileno((uv_handle_t*) &pipe, &fd); 99 uv_close((uv_handle_t*) &pipe, NULL); 100 r = uv_fileno((uv_handle_t*) &pipe, &fd);
|
| test-pipe-bind-error.c | 29 # define BAD_PIPENAME "bad-pipe" 167 uv_pipe_t pipe; local 170 ASSERT_OK(uv_pipe_init(uv_default_loop(), &pipe, 0)); 187 uv_pipe_bind2(&pipe, path, sizeof(path), UV_PIPE_NO_TRUNCATE)); 194 uv_pipe_bind2(&pipe, path, sizeof(path), UV_PIPE_NO_TRUNCATE)); 197 &pipe, 206 &pipe,
|
| /src/tests/fs/lfs/ |
| util.c | 19 FILE *pipe; local 35 pipe = fopen(LOGFILE, "r"); 36 if (pipe == NULL) 38 while (fgets(buf, MAXLINE, pipe) != NULL) { 42 while (fgets(buf, MAXLINE, pipe) != NULL) 44 fclose(pipe); 142 FILE *pipe; local 148 pipe = popen(cmd, "r"); 149 while (fgets(s, MAXLINE, pipe) != NULL) { 161 pclose(pipe); 174 FILE *pipe; local [all...] |
| /src/sys/dev/usb/ |
| umodeswitch.c | 71 struct usbd_pipe *pipe; local 104 USBD_EXCLUSIVE_USE, &pipe); 106 aprint_error("%s: failed to open bulk transfer pipe %d\n", 111 int error = usbd_create_xfer(pipe, cmdlen, 0, 0, &xfer); 131 usbd_abort_pipe(pipe); 132 usbd_close_pipe(pipe);
|
| /src/sys/external/bsd/drm2/dist/drm/i915/ |
| intel_sideband.h | 12 #define pipe pipe_drmhack /* see intel_display.h */ macro 15 enum pipe; 83 u32 vlv_dpio_read(struct drm_i915_private *i915, enum pipe pipe, int reg); 85 enum pipe pipe, int reg, u32 val);
|
| /src/sys/external/bsd/drm2/dist/drm/xen/ |
| xen_drm_front.h | 114 struct drm_simple_display_pipe pipe; member in struct:xen_drm_front_drm_pipeline
|
| /src/tests/fs/common/ |
| fstest_lfs.c | 221 FILE *pipe, *err; local 230 pipe = popen(cmd, "r"); 234 while (fgets(s, MAXPATHLEN, pipe) != NULL) { 249 pclose(pipe);
|