| /Zephyr-latest/subsys/usb/host/ |
| D | usbip.c | 78 cmd->submit.flags = ntohl(cmd->submit.flags); in usbip_ntoh_command() 79 cmd->submit.length = ntohl(cmd->submit.length); in usbip_ntoh_command() 80 cmd->submit.start_frame = ntohl(cmd->submit.start_frame); in usbip_ntoh_command() 81 cmd->submit.numof_iso_pkts = ntohl(cmd->submit.numof_iso_pkts); in usbip_ntoh_command() 82 cmd->submit.interval = ntohl(cmd->submit.interval); in usbip_ntoh_command() 139 memset(&ret.submit, 0, sizeof(ret.submit)); in usbip_req_cb() 140 ret.submit.status = htonl(xfer->err); in usbip_req_cb() 141 ret.submit.start_frame = htonl(cmd->submit.start_frame); in usbip_req_cb() 142 ret.submit.numof_iso_pkts = htonl(0xFFFFFFFFUL); in usbip_req_cb() 153 if (xfer->err == 0 && cmd->submit.length != 0) { in usbip_req_cb() [all …]
|
| D | Kconfig.usbip | 25 int "Number of submit commands in the backlog" 29 Number of submit commands that can be stored in the backlog.
|
| D | usbip.h | 98 struct usbip_cmd_submit submit; member 121 struct usbip_ret_submit submit; member
|
| /Zephyr-latest/subsys/sensing/ |
| D | sensing_sensor.c | 22 if (api->submit != NULL) { in sensing_iodev_submit() 23 api->submit(dev, iodev_sqe); in sensing_iodev_submit() 31 .submit = sensing_iodev_submit,
|
| /Zephyr-latest/drivers/usb/device/ |
| D | usb_dc_native_posix_adapt.c | 57 ntohl(hdr->u.submit.transfer_flags), in usbip_header_dump() 58 ntohl(hdr->u.submit.number_of_packets), in usbip_header_dump() 59 ntohl(hdr->u.submit.interval), in usbip_header_dump() 60 ntohl(hdr->u.submit.transfer_buffer_length)); in usbip_header_dump() 194 struct usbip_submit *req = &hdr->u.submit; in handle_usbip_submit()
|
| D | usb_dc_native_posix.c | 525 USB_REQTYPE_GET_DIR(hdr->u.submit.bmRequestType)) { in handle_usb_control() 532 memcpy(ep_ctrl->buf, &hdr->u.submit.bmRequestType, ep_ctrl->data_len); in handle_usb_control() 536 uint32_t data_len = ntohl(hdr->u.submit.transfer_buffer_length); in handle_usb_control() 572 data_len = ntohl(hdr->u.submit.transfer_buffer_length); in handle_usb_data()
|
| D | usb_dc_native_posix_adapt.h | 97 struct usbip_submit submit; member
|
| /Zephyr-latest/tests/subsys/rtio/rtio_api/src/ |
| D | rtio_iodev_test.h | 120 .submit = rtio_iodev_test_submit,
|
| /Zephyr-latest/drivers/sensor/ |
| D | default_rtio_sensor.c | 32 if (api->submit != NULL) { in sensor_iodev_submit() 33 api->submit(dev, iodev_sqe); in sensor_iodev_submit() 42 .submit = sensor_iodev_submit,
|
| /Zephyr-latest/drivers/spi/ |
| D | Kconfig | 46 When RTIO is used with a driver that does not yet implement the submit API 53 an issue where you are using RTIO, your driver does not implement submit natively,
|
| /Zephyr-latest/ |
| D | CONTRIBUTING.rst | 4 As an open-source project, we welcome and encourage the community to submit
|
| /Zephyr-latest/samples/subsys/rtio/sensor_batch_processing/src/ |
| D | vnd_sensor.c | 131 .submit = vnd_sensor_iodev_submit,
|
| /Zephyr-latest/subsys/sensing/sensor/hinge_angle/ |
| D | hinge_angle.c | 96 .submit = hinge_submit,
|
| /Zephyr-latest/subsys/rtio/ |
| D | rtio_executor.c | 51 iodev_sqe->sqe.iodev->api->submit(iodev_sqe); in rtio_iodev_submit()
|
| /Zephyr-latest/drivers/i3c/ |
| D | Kconfig | 169 When RTIO is used with a driver that does not yet implement the submit API 176 an issue where you are using RTIO, your driver does not implement submit natively,
|
| D | i3c_rtio.c | 19 .submit = i3c_iodev_submit,
|
| /Zephyr-latest/drivers/sensor/maxim/ds3231/ |
| D | ds3231.c | 263 .submit = sensor_ds3231_submit,
|
| /Zephyr-latest/tests/subsys/rtio/workq/src/ |
| D | main.c | 39 .submit = dummy_submit,
|
| /Zephyr-latest/doc/contribute/ |
| D | guidelines.rst | 6 As an open-source project, we welcome and encourage the community to submit 12 and enhancement requests, and submit patches to the project so your patch will 37 service using Github Actions, which runs automatically on GitHub when you submit 134 the right to submit the patch per the license. The DCO agreement is shown 144 have the right to submit it under the open source license 150 submit that work with modifications, whether created in whole 152 I am permitted to submit under a different license), as 161 all personal information I submit with it, including my 314 submitting your own. When you submit an issue (bug or feature request), the 583 If you think your change may break some test, you can submit your PR as a draft [all …]
|
| D | modifying_contributions.rst | 61 * submit the modified patches as their *own* work (i.e. with their
|
| /Zephyr-latest/drivers/sensor/asahi_kasei/akm09918c/ |
| D | akm09918c.c | 248 .submit = akm09918c_submit,
|
| /Zephyr-latest/doc/kernel/services/threads/ |
| D | workqueue.rst | 115 to submit a work item that is already queued the work item is not affected; 119 A handler function is permitted to re-submit its work item argument 186 When a submit request is made, the kernel begins observing kernel objects 211 to submit new work items to the system workqueue, since each new workqueue 347 a keyboard. There are two APIs that submit work after a delay: 457 external lock just to submit or schedule them. Even if you use external state 508 So when new work comes in, just submit it. Don't attempt to "optimize" by 528 submit the work while you're checking (generally because you're holding a lock
|
| /Zephyr-latest/subsys/sensing/sensor/phy_3d_sensor/ |
| D | phy_3d_sensor.c | 214 .submit = phy_3d_sensor_submit,
|
| /Zephyr-latest/doc/services/rtio/ |
| D | index.rst | 117 in the form of the iodev submit API call. It is the io devices job to work 220 driver doesn't support the RTIO APIs, it will set the submit function to 224 vendors implement the submit function. With this queue, any I2C bus driver that does not implement
|
| /Zephyr-latest/drivers/i2c/ |
| D | i2c_rtio.c | 18 .submit = i2c_iodev_submit,
|