Home
last modified time | relevance | path

Searched refs:submit (Results 1 – 25 of 58) sorted by relevance

123

/Zephyr-latest/subsys/usb/host/
Dusbip.c78 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 …]
DKconfig.usbip25 int "Number of submit commands in the backlog"
29 Number of submit commands that can be stored in the backlog.
Dusbip.h98 struct usbip_cmd_submit submit; member
121 struct usbip_ret_submit submit; member
/Zephyr-latest/subsys/sensing/
Dsensing_sensor.c22 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/
Dusb_dc_native_posix_adapt.c57 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()
Dusb_dc_native_posix.c525 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()
Dusb_dc_native_posix_adapt.h97 struct usbip_submit submit; member
/Zephyr-latest/tests/subsys/rtio/rtio_api/src/
Drtio_iodev_test.h120 .submit = rtio_iodev_test_submit,
/Zephyr-latest/drivers/sensor/
Ddefault_rtio_sensor.c32 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/
DKconfig46 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/
DCONTRIBUTING.rst4 As an open-source project, we welcome and encourage the community to submit
/Zephyr-latest/samples/subsys/rtio/sensor_batch_processing/src/
Dvnd_sensor.c131 .submit = vnd_sensor_iodev_submit,
/Zephyr-latest/subsys/sensing/sensor/hinge_angle/
Dhinge_angle.c96 .submit = hinge_submit,
/Zephyr-latest/subsys/rtio/
Drtio_executor.c51 iodev_sqe->sqe.iodev->api->submit(iodev_sqe); in rtio_iodev_submit()
/Zephyr-latest/drivers/i3c/
DKconfig169 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,
Di3c_rtio.c19 .submit = i3c_iodev_submit,
/Zephyr-latest/drivers/sensor/maxim/ds3231/
Dds3231.c263 .submit = sensor_ds3231_submit,
/Zephyr-latest/tests/subsys/rtio/workq/src/
Dmain.c39 .submit = dummy_submit,
/Zephyr-latest/doc/contribute/
Dguidelines.rst6 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 …]
Dmodifying_contributions.rst61 * submit the modified patches as their *own* work (i.e. with their
/Zephyr-latest/drivers/sensor/asahi_kasei/akm09918c/
Dakm09918c.c248 .submit = akm09918c_submit,
/Zephyr-latest/doc/kernel/services/threads/
Dworkqueue.rst115 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/
Dphy_3d_sensor.c214 .submit = phy_3d_sensor_submit,
/Zephyr-latest/doc/services/rtio/
Dindex.rst117 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/
Di2c_rtio.c18 .submit = i2c_iodev_submit,

123