Home
last modified time | relevance | path

Searched refs:pipe (Results 1651 - 1675 of 2962) sorted by relevance

1...<<61626364656667686970>>...119

/kernel/linux/linux-6.6/drivers/most/
H A Dmost_usb.c79 int pipe; member
361 "Broken pipe on ep%02x\n", in hdm_write_completion()
364 mdev->clear_work[channel].pipe = urb->pipe; in hdm_write_completion()
418 dev_warn(dev, "Broken pipe on ep%02x\n", in hdm_read_completion()
421 mdev->clear_work[channel].pipe = urb->pipe; in hdm_read_completion()
726 * This sends a clear_halt to the given USB pipe.
733 int pipe = clear_work->pipe; in wq_clear_halt() local
[all...]
/kernel/linux/linux-6.6/drivers/net/wireless/mediatek/mt76/
H A Dusb.c23 unsigned int pipe; in __mt76u_vendor_request() local
28 pipe = (req_type & USB_DIR_IN) ? usb_rcvctrlpipe(udev, 0) in __mt76u_vendor_request()
34 ret = usb_control_msg(udev, pipe, req, req_type, val, in __mt76u_vendor_request()
424 unsigned int pipe; in mt76u_fill_bulk_urb() local
427 pipe = usb_rcvbulkpipe(udev, dev->usb.in_ep[index]); in mt76u_fill_bulk_urb()
429 pipe = usb_sndbulkpipe(udev, dev->usb.out_ep[index]); in mt76u_fill_bulk_urb()
432 urb->pipe = pipe; in mt76u_fill_bulk_urb()
/kernel/linux/linux-6.6/sound/usb/
H A Dmidi2.c63 unsigned int pipe; /* URB pipe */ member
317 usb_fill_int_urb(ctx->urb, ep->dev, ep->pipe, in alloc_midi_urbs()
320 usb_fill_bulk_urb(ctx->urb, ep->dev, ep->pipe, in alloc_midi_urbs()
462 ep->pipe = usb_rcvintpipe(ep->dev, endpoint); in create_midi2_endpoint()
464 ep->pipe = usb_rcvbulkpipe(ep->dev, endpoint); in create_midi2_endpoint()
467 ep->pipe = usb_sndintpipe(ep->dev, endpoint); in create_midi2_endpoint()
469 ep->pipe = usb_sndbulkpipe(ep->dev, endpoint); in create_midi2_endpoint()
471 ep->packets = usb_maxpacket(ep->dev, ep->pipe); in create_midi2_endpoint()
H A Dquirks.h36 void snd_usb_ctl_msg_quirk(struct usb_device *dev, unsigned int pipe,
/third_party/backends/backend/
H A Dmustek_pp.c130 static int reader_process (Mustek_pp_Handle * hndl, int pipe);
162 * closes the pipe (read-only end)
167 if (hndl->pipe >= 0) { in do_eof()
169 close (hndl->pipe); in do_eof()
170 hndl->pipe = -1; in do_eof()
247 reader_process (Mustek_pp_Handle * hndl, int pipe) in reader_process() argument
264 if (!(fp = fdopen(pipe, "w"))) in reader_process()
1143 hndl->pipe = -1; in sane_open()
1704 if (pipe(pipeline) < 0) { in sane_start()
1705 DBG (1, "sane_start: could not initialize pipe ( in sane_start()
[all...]
/kernel/linux/linux-5.10/drivers/mmc/host/
H A Dvub300.c462 unsigned int pipe = in irqpoll_out_completed() local
464 usb_fill_bulk_urb(vub300->command_res_urb, vub300->udev, pipe, in irqpoll_out_completed()
827 unsigned int pipe = in command_out_completed() local
829 usb_fill_bulk_urb(vub300->command_res_urb, vub300->udev, pipe, in command_out_completed()
1398 unsigned int pipe, void *data, int len, in vub300_usb_bulk_msg()
1408 usb_fill_bulk_urb(vub300->urb, usb_dev, pipe, data, len, in vub300_usb_bulk_msg()
1440 unsigned pipe; in __command_read_data() local
1441 pipe = usb_rcvbulkpipe(vub300->udev, vub300->data_inp_ep); in __command_read_data()
1443 pipe, 0, data->sg, in __command_read_data()
1471 unsigned pipe in __command_read_data() local
1397 vub300_usb_bulk_msg(struct vub300_mmc_host *vub300, unsigned int pipe, void *data, int len, int *actual_length, int timeout_msecs) vub300_usb_bulk_msg() argument
1506 unsigned pipe = usb_sndbulkpipe(vub300->udev, vub300->data_out_ep); __command_write_data() local
[all...]
/kernel/linux/linux-6.6/drivers/mmc/host/
H A Dvub300.c462 unsigned int pipe = in irqpoll_out_completed() local
464 usb_fill_bulk_urb(vub300->command_res_urb, vub300->udev, pipe, in irqpoll_out_completed()
827 unsigned int pipe = in command_out_completed() local
829 usb_fill_bulk_urb(vub300->command_res_urb, vub300->udev, pipe, in command_out_completed()
1396 unsigned int pipe, void *data, int len, in vub300_usb_bulk_msg()
1406 usb_fill_bulk_urb(vub300->urb, usb_dev, pipe, data, len, in vub300_usb_bulk_msg()
1438 unsigned pipe; in __command_read_data() local
1439 pipe = usb_rcvbulkpipe(vub300->udev, vub300->data_inp_ep); in __command_read_data()
1441 pipe, 0, data->sg, in __command_read_data()
1469 unsigned pipe in __command_read_data() local
1395 vub300_usb_bulk_msg(struct vub300_mmc_host *vub300, unsigned int pipe, void *data, int len, int *actual_length, int timeout_msecs) vub300_usb_bulk_msg() argument
1504 unsigned pipe = usb_sndbulkpipe(vub300->udev, vub300->data_out_ep); __command_write_data() local
[all...]
/foundation/communication/dsoftbus/components/nstackx/nstackx_core/platform/unix/dfile/
H A Dsys_dfile.c31 if (pipe(session->receiverPipe) < 0) { in CreateReceiverPipe()
32 LOGE(TAG, "create pipe error: %d", errno); in CreateReceiverPipe()
38 LOGE(TAG, "pipe fd %d is too big for monitoring by select", session->receiverPipe[PIPE_OUT]); in CreateReceiverPipe()
68 LOGE(TAG, "write to receiver pipe failed. errno %d", errno); in NotifyPipeEvent()
/kernel/linux/linux-5.10/arch/openrisc/
H A DMakefile25 KBUILD_CFLAGS += -pipe -ffixed-r10 -D__linux__
/kernel/linux/linux-5.10/tools/testing/selftests/proc/
H A Dsetns-dcache.c65 if (pipe(fd) == -1) { in main()
/kernel/linux/linux-5.10/drivers/media/platform/qcom/camss/
H A Dcamss-video.h45 struct media_pipeline pipe; member
/kernel/linux/linux-5.10/sound/usb/
H A Dquirks.h39 void snd_usb_ctl_msg_quirk(struct usb_device *dev, unsigned int pipe,
/kernel/linux/linux-5.10/drivers/gpu/drm/msm/disp/dpu1/
H A Ddpu_plane.h104 * dpu_plane_init - create new dpu plane for the given pipe
106 * @pipe: dpu hardware pipe identifier
108 * @possible_crtcs: bitmask of crtc that can be attached to the given pipe
109 * @master_plane_id: primary plane id of a multirect pipe. 0 value passed for
111 * id will be passed for a virtual pipe initialization.
115 uint32_t pipe, enum drm_plane_type type,
126 * dpu_plane_clear_multirect - clear multirect bits for the given pipe
/kernel/linux/linux-5.10/drivers/gpu/drm/msm/disp/mdp5/
H A Dmdp5_ctl.h46 * @stage: array to contain the pipe num for each stage
67 u32 mdp_ctl_flush_mask_pipe(enum mdp5_pipe pipe);
/kernel/linux/linux-5.10/include/drm/
H A Ddrm_gem_framebuffer_helper.h49 int drm_gem_fb_simple_display_pipe_prepare_fb(struct drm_simple_display_pipe *pipe,
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/
H A Dia_css_irq.h134 struct ia_css_pipe *pipe; member
135 /** The image pipe that generated the interrupt. */
150 * information includes the image pipe, buffer type etc.
/kernel/linux/linux-6.6/drivers/staging/media/atomisp/pci/
H A Dia_css_event_public.h76 /* IA_CSS_EVENT_TYPE_ALL is a mask for all pipe related events.
95 * Depending on the event type, either pipe or port will be filled.
96 * Pipeline related events (like buffer/frame events) will return a valid and filled pipe handle.
101 struct ia_css_pipe *pipe; member
102 /** Pipe handle on which event happened, NULL for non pipe related
H A Dia_css_irq.h135 struct ia_css_pipe *pipe; member
136 /** The image pipe that generated the interrupt. */
151 * information includes the image pipe, buffer type etc.
/kernel/linux/linux-6.6/drivers/media/platform/qcom/camss/
H A Dcamss-video.h45 struct media_pipeline pipe; member
/kernel/linux/linux-6.6/drivers/gpu/drm/msm/disp/mdp5/
H A Dmdp5_ctl.h46 * @stage: array to contain the pipe num for each stage
67 u32 mdp_ctl_flush_mask_pipe(enum mdp5_pipe pipe);
/kernel/linux/linux-6.6/tools/testing/selftests/proc/
H A Dsetns-dcache.c65 if (pipe(fd) == -1) { in main()
/kernel/liteos_a/testsuites/unittest/extended/signal/full/
H A DIt_ipc_pipe_003.cpp38 int pipeFd[2], ret, spid; // 2, pipe return 2 file descripter in Testcase()
43 ret = pipe(pipeFd); in Testcase()
73 printf("read pipe success: %s\n", buffer); in Testcase()
77 printf("pipe ok\n"); in Testcase()
H A DIt_ipc_pipe_002.cpp36 int pipeFd[2], ret, spid; // 2, pipe return 2 file descripter in Testcase()
41 ret = pipe(pipeFd); in Testcase()
71 printf("read pipe success: %s\n", buffer); in Testcase()
75 printf("pipe ok\n"); in Testcase()
H A Dpipe_test_005.cpp53 retValue = pipe(pipefd); in PipecommonWrite()
74 // 2 waitting for the father process close the pipe's read port in PipecommonWrite()
89 // 2 father process close the pipe's read port in PipecommonWrite()
/kernel/liteos_a/testsuites/unittest/libc/io/full/
H A DIt_stdlib_poll_003.cpp43 int pipeFd[2], ret, err; // 2, pipe return 2 file descirpter in Testcase()
52 ret = pipe(pipeFd); in Testcase()

Completed in 19 milliseconds

1...<<61626364656667686970>>...119