/Linux-v4.19/tools/usb/ffs-aio-example/simple/host_app/ |
D | test.c | 36 #define BUF_LEN 8192 macro 170 static unsigned char buffer[BUF_LEN]; in main() 172 libusb_bulk_transfer(state.handle, in_addr, buffer, BUF_LEN, in main() 174 libusb_bulk_transfer(state.handle, out_addr, buffer, BUF_LEN, in main()
|
/Linux-v4.19/tools/usb/ffs-aio-example/simple/device_app/ |
D | aio_simple.c | 50 #define BUF_LEN 8192 macro 274 buf_in = malloc(BUF_LEN); in main() 275 buf_out = malloc(BUF_LEN); in main() 326 io_prep_pwrite(iocb_in, ep[0], buf_in, BUF_LEN, 0); in main() 340 io_prep_pread(iocb_out, ep[1], buf_out, BUF_LEN, 0); in main()
|
/Linux-v4.19/tools/usb/ffs-aio-example/multibuff/host_app/ |
D | test.c | 36 #define BUF_LEN 8192 macro 169 static unsigned char buffer[BUF_LEN]; in main() 171 libusb_bulk_transfer(state.handle, addr, buffer, BUF_LEN, in main()
|
/Linux-v4.19/drivers/media/usb/dvb-usb-v2/ |
D | af9035.h | 59 #define BUF_LEN 64 macro 60 u8 buf[BUF_LEN];
|
D | af9015.h | 102 #define BUF_LEN 63 macro 105 u8 buf[BUF_LEN]; /* bulk USB control message */
|
D | zd1301.c | 26 #define BUF_LEN 8 macro 27 u8 buf[BUF_LEN]; /* bulk USB control message */
|
D | af9015.c | 76 if ((write && (req->data_len > BUF_LEN - REQ_HDR_LEN)) || in af9015_ctrl_msg() 77 (!write && (req->data_len > BUF_LEN - ACK_HDR_LEN))) { in af9015_ctrl_msg() 316 #define LEN_MAX (BUF_LEN - REQ_HDR_LEN) /* Max payload size */ in af9015_download_firmware()
|
D | af9035.c | 59 if (req->wlen > (BUF_LEN - REQ_HDR_LEN - CHECKSUM_LEN) || in af9035_ctrl_msg() 60 req->rlen > (BUF_LEN - ACK_HDR_LEN - CHECKSUM_LEN)) { in af9035_ctrl_msg()
|
/Linux-v4.19/Documentation/usb/ |
D | gadget_hid.txt | 135 #define BUF_LEN 512 188 int keyboard_fill_report(char report[8], char buf[BUF_LEN], int *hold) 241 int mouse_fill_report(char report[8], char buf[BUF_LEN], int *hold) 292 int joystick_fill_report(char report[8], char buf[BUF_LEN], int *hold) 367 char buf[BUF_LEN]; 408 cmd_len = read(fd, buf, BUF_LEN - 1); 417 cmd_len = read(STDIN_FILENO, buf, BUF_LEN - 1);
|
/Linux-v4.19/tools/usb/ffs-aio-example/multibuff/device_app/ |
D | aio_multibuff.c | 50 #define BUF_LEN 8192 macro 300 init_bufs(&iobuf[i], BUFS_MAX, BUF_LEN); in main()
|
/Linux-v4.19/drivers/input/touchscreen/ |
D | bu21029_ts.c | 150 #define BUF_LEN 8 macro 222 u8 buf[BUF_LEN]; in bu21029_touch_soft_irq()
|
/Linux-v4.19/drivers/gpu/drm/i915/ |
D | intel_sdvo.c | 412 #define BUF_LEN 256 in intel_sdvo_debug_write() macro 413 char buffer[BUF_LEN]; in intel_sdvo_debug_write() 416 pos += snprintf(buffer + pos, max_t(int, BUF_LEN - pos, 0), args) in intel_sdvo_debug_write() 434 BUG_ON(pos >= BUF_LEN - 1); in intel_sdvo_debug_write() 436 #undef BUF_LEN in intel_sdvo_debug_write() 532 #define BUF_LEN 256 in intel_sdvo_read_response() macro 533 char buffer[BUF_LEN]; in intel_sdvo_read_response() 572 pos += snprintf(buffer + pos, max_t(int, BUF_LEN - pos, 0), args) in intel_sdvo_read_response() 590 BUG_ON(pos >= BUF_LEN - 1); in intel_sdvo_read_response() 592 #undef BUF_LEN in intel_sdvo_read_response()
|