/Zephyr-latest/subsys/bluetooth/controller/ll_sw/ |
D | ull_central.c | 205 memq_init(conn_lll->link_tx_free, &conn_lll->memq_tx.head, in ll_create_connection() 641 link = memq_deinit(&conn_lll->memq_tx.head, in ull_central_cleanup() 1066 link = memq_deinit(&lll->memq_tx.head, &lll->memq_tx.tail);
|
D | ull_adv_iso.c | 333 memq_init(stream->link_tx_free, &stream->memq_tx.head, in big_create() 1096 link = memq_deinit(&stream->memq_tx.head, in ull_adv_iso_stream_release() 1646 link2 = memq_dequeue(stream->memq_tx.tail, &stream->memq_tx.head, in tx_lll_flush() 1653 &stream->memq_tx.head, in tx_lll_flush()
|
D | ull_peripheral_iso.c | 281 memq_init(cis->lll.link_tx_free, &cis->lll.memq_tx.head, in ull_peripheral_iso_acquire()
|
D | ull_conn_iso.c | 1377 link = memq_dequeue(lll->memq_tx.tail, &lll->memq_tx.head, (void **)&tx); in cis_tx_lll_flush() 1383 link = memq_dequeue(lll->memq_tx.tail, &lll->memq_tx.head, in cis_tx_lll_flush() 1388 link = memq_deinit(&lll->memq_tx.head, &lll->memq_tx.tail); in cis_tx_lll_flush()
|
D | ull_conn.c | 1095 memq_peek(lll->memq_tx.head, in ull_conn_done() 2011 link = memq_dequeue(lll->memq_tx.tail, &lll->memq_tx.head, in tx_lll_flush() 2029 link = memq_dequeue(lll->memq_tx.tail, &lll->memq_tx.head, in tx_lll_flush() 2878 return (memq_peek(conn->lll.memq_tx.head, conn->lll.memq_tx.tail, NULL) == NULL);
|
/Zephyr-latest/doc/kernel/services/data_passing/ |
D | message_queues.rst | 53 A thread can also **peek** at the message on the head of a message queue without 165 head of the queue that is generated by one or more producing threads.
|
/Zephyr-latest/include/zephyr/tracing/ |
D | tracing.h | 1156 #define sys_port_trace_k_fifo_put_list_enter(fifo, head, tail) argument 1164 #define sys_port_trace_k_fifo_put_list_exit(fifo, head, tail) argument
|
/Zephyr-latest/subsys/usb/device/class/dfu/ |
D | usb_dfu.c | 841 static void dfu_interface_config(struct usb_desc_header *head, in dfu_interface_config() argument 844 ARG_UNUSED(head); in dfu_interface_config()
|
/Zephyr-latest/subsys/usb/device/class/hid/ |
D | core.c | 618 static void hid_interface_config(struct usb_desc_header *head, in hid_interface_config() argument 621 struct usb_if_descriptor *if_desc = (struct usb_if_descriptor *)head; in hid_interface_config()
|
/Zephyr-latest/include/zephyr/ |
D | kernel.h | 2109 int k_queue_append_list(struct k_queue *queue, void *head, void *tail); 2612 #define k_fifo_put_list(fifo, head, tail) \ argument 2614 SYS_PORT_TRACING_OBJ_FUNC_ENTER(k_fifo, put_list, fifo, head, tail); \ 2615 k_queue_append_list(&(fifo)->_queue, head, tail); \ 2616 SYS_PORT_TRACING_OBJ_FUNC_EXIT(k_fifo, put_list, fifo, head, tail); \
|
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/lll/ |
D | lll_peripheral_iso.c | 353 link = memq_peek(cis_lll->memq_tx.head, in prepare_cb() 358 &cis_lll->memq_tx.head, in prepare_cb() 668 link = memq_peek_n(cis_lll->memq_tx.head, cis_lll->memq_tx.tail, in isr_rx() 673 link = memq_peek_n(cis_lll->memq_tx.head, in isr_rx()
|
/Zephyr-latest/subsys/mgmt/osdp/src/ |
D | osdp_common.h | 527 void osdp_dump(const char *head, uint8_t *buf, int len);
|
/Zephyr-latest/drivers/dma/ |
D | dma_mchp_xec.c | 133 struct dma_block_config *head; member 374 chdata->head = block; in dma_xec_configure()
|
/Zephyr-latest/subsys/tracing/sysview/ |
D | tracing_sysview.h | 445 #define sys_port_trace_k_fifo_put_list_enter(fifo, head, tail) \ argument 447 (uint32_t)(uintptr_t)head, (uint32_t)(uintptr_t)tail) 449 #define sys_port_trace_k_fifo_put_list_exit(fifo, head, tail) \ argument
|
D | SYSVIEW_Zephyr.txt | 52 49 k_queue_append_list q=%I, head=%p, tail=%p | Returns %ErrCodePosix
|
/Zephyr-latest/subsys/tracing/user/ |
D | tracing_user.h | 267 #define sys_port_trace_k_fifo_put_list_enter(fifo, head, tail) argument 268 #define sys_port_trace_k_fifo_put_list_exit(fifo, head, tail) argument
|
/Zephyr-latest/subsys/usb/device/class/ |
D | cdc_acm.c | 454 static void cdc_interface_config(struct usb_desc_header *head, in cdc_interface_config() argument 457 struct usb_if_descriptor *if_desc = (struct usb_if_descriptor *) head; in cdc_interface_config()
|
/Zephyr-latest/subsys/usb/device/class/netusb/ |
D | function_rndis.c | 1119 static void netusb_interface_config(struct usb_desc_header *head, in netusb_interface_config() argument 1122 ARG_UNUSED(head); in netusb_interface_config()
|
/Zephyr-latest/subsys/usb/device/class/audio/ |
D | audio.c | 306 static void audio_interface_config(struct usb_desc_header *head, in audio_interface_config() argument 309 struct usb_if_descriptor *iface = (struct usb_if_descriptor *)head; in audio_interface_config()
|
/Zephyr-latest/lib/posix/options/ |
D | mqueue.c | 423 mq = mq_list.head; in find_in_list()
|
/Zephyr-latest/drivers/usb/udc/ |
D | udc_common.c | 554 list.head = k_fifo_peek_head(&cfg->fifo); in udc_debug_ep_enqueue() 556 if (list.head == NULL) { in udc_debug_ep_enqueue()
|
/Zephyr-latest/samples/net/sockets/dumb_http_server_mt/src/ |
D | response_100k.html.bin | 5 <head> 12 </head>
|
/Zephyr-latest/drivers/can/ |
D | can_xmc4xxx.c | 55 CAN_MO_TypeDef *head; member 593 fifo->head = &CAN_MO->MO[head_index]; in can_xmc4xxx_update_fifo_head()
|
/Zephyr-latest/subsys/tracing/ctf/ |
D | tracing_ctf.h | 227 #define sys_port_trace_k_fifo_put_list_enter(fifo, head, tail) argument 228 #define sys_port_trace_k_fifo_put_list_exit(fifo, head, tail) argument
|
/Zephyr-latest/doc/develop/api/ |
D | terminology.rst | 51 the head of the ready queue.
|