Searched refs:bulk (Results 1 – 25 of 34) sorted by relevance
12
/drivers/media/video/uvc/ |
D | uvc_video.c | 482 nbytes = min(video->bulk.max_payload_size - video->bulk.payload_size, in uvc_video_encode_data() 545 video->bulk.payload_size += len; in uvc_video_decode_bulk() 550 if (video->bulk.header_size == 0 && !video->bulk.skip_payload) { in uvc_video_decode_bulk() 559 video->bulk.skip_payload = 1; in uvc_video_decode_bulk() 561 memcpy(video->bulk.header, mem, ret); in uvc_video_decode_bulk() 562 video->bulk.header_size = ret; in uvc_video_decode_bulk() 575 if (!video->bulk.skip_payload && buf != NULL) in uvc_video_decode_bulk() 582 video->bulk.payload_size >= video->bulk.max_payload_size) { in uvc_video_decode_bulk() 583 if (!video->bulk.skip_payload && buf != NULL) { in uvc_video_decode_bulk() 584 uvc_video_decode_end(video, buf, video->bulk.header, in uvc_video_decode_bulk() [all …]
|
/drivers/media/dvb/dvb-usb/ |
D | dtt200u.c | 155 .bulk = { 200 .bulk = { 245 .bulk = { 290 .bulk = {
|
D | dibusb-mb.c | 203 .bulk = { 288 .bulk = { 352 .bulk = { 409 .bulk = {
|
D | cxusb.c | 349 const int junk_len = p->u.bulk.buffersize; in cxusb_d680_dmb_drain_video() 1302 .bulk = { 1349 .bulk = { 1400 .bulk = { 1460 .bulk = { 1510 .bulk = { 1556 .bulk = { 1604 .bulk = { 1654 .bulk = { 1701 .bulk = { [all …]
|
D | m920x.c | 719 .bulk = { 763 .bulk = { 820 .bulk = { 840 .bulk = { 879 .bulk = {
|
D | usb-urb.c | 141 stream->props.u.bulk.buffersize)) < 0) in usb_bulk_urb_init() 156 stream->props.u.bulk.buffersize, in usb_bulk_urb_init()
|
D | dibusb-mc.c | 72 .bulk = {
|
D | a800.c | 136 .bulk = {
|
D | umt-010.c | 113 .bulk = {
|
D | cinergyT2-core.c | 210 .bulk = {
|
D | nova-t-usb2.c | 183 .bulk = {
|
D | dtv5100.c | 191 .bulk = {
|
D | gl861.c | 179 .bulk = {
|
D | dvb-usb.h | 107 } bulk; member
|
D | af9015.c | 848 af9015_properties[i].adapter[0].stream.u.bulk.buffersize in af9015_read_config() 854 af9015_properties[i].adapter[0].stream.u.bulk.buffersize in af9015_read_config() 1264 .bulk = { 1369 .bulk = {
|
D | gp8psk.c | 246 .bulk = {
|
D | vp7045.c | 252 .bulk = {
|
D | dw2102.c | 727 .bulk = { 779 .bulk = {
|
D | vp702x.c | 276 .bulk = {
|
/drivers/usb/core/ |
D | devio.c | 757 struct usbdevfs_bulktransfer bulk; in proc_bulk() local 763 if (copy_from_user(&bulk, arg, sizeof(bulk))) in proc_bulk() 765 ret = findintfep(ps->dev, bulk.ep); in proc_bulk() 771 if (bulk.ep & USB_DIR_IN) in proc_bulk() 772 pipe = usb_rcvbulkpipe(dev, bulk.ep & 0x7f); in proc_bulk() 774 pipe = usb_sndbulkpipe(dev, bulk.ep & 0x7f); in proc_bulk() 775 if (!usb_maxpacket(dev, pipe, !(bulk.ep & USB_DIR_IN))) in proc_bulk() 777 len1 = bulk.len; in proc_bulk() 782 tmo = bulk.timeout; in proc_bulk() 783 if (bulk.ep & 0x80) { in proc_bulk() [all …]
|
/drivers/scsi/ |
D | imm.c | 648 int fast, bulk, status; in imm_completion() local 651 bulk = ((v == READ_6) || in imm_completion() 684 fast = (bulk in imm_completion() 689 fast = (bulk in imm_completion()
|
D | ppa.c | 541 int fast, bulk, status; in ppa_completion() local 544 bulk = ((v == READ_6) || in ppa_completion() 590 fast = (bulk && (cmd->SCp.this_residual >= PPA_BURST_SIZE)) in ppa_completion()
|
/drivers/usb/gadget/ |
D | Kconfig | 244 # if there's only one gadget driver, using only two bulk endpoints, 369 it provides 4 IN and 4 OUT endpoints (bulk or interrupt type). 449 The device controller has three configurable (bulk or interrupt) 532 # this first set of drivers all depend on bulk-capable hardware. 538 sources bulk data; or it loops back a configurable number of 540 conformance. The driver needs only two bulk-capable endpoints, so 718 This driver requires four bulk and two interrupt endpoints,
|
D | m66592-udc.c | 328 m66592->bulk--; in pipe_buffer_release() 334 m66592->bulk--; in pipe_buffer_release() 432 if (m66592->bulk >= M66592_MAX_NUM_BULK) { in alloc_pipe_config() 442 info.pipe = M66592_BASE_PIPENUM_BULK + m66592->bulk; in alloc_pipe_config() 443 counter = &m66592->bulk; in alloc_pipe_config() 488 m66592->bulk++; in alloc_pipe_config()
|
/drivers/usb/serial/ |
D | ChangeLog.history | 181 Fixed bug that Randy Dunlap found for Generic devices with no bulk out ports. 271 of ports is determined by the number of bulk out endpoints for the 309 Fixed problems with urb for bulk out. 312 bulk in / bulk out endpoint pair is being used right now.
|
12