Home
last modified time | relevance | path

Searched refs:head (Results 51 – 75 of 116) sorted by relevance

12345

/Zephyr-latest/samples/modules/thrift/hello/server/
DMakefile23 BOOST_INCLUDE := $(shell find $(HOMEBREW_PREFIX) -path '*/Cellar/boost/*/include' -type d | head -n…
/Zephyr-latest/tests/kernel/queue/src/
Dtest_queue_contexts.c50 static qdata_t *head = &data_l[0], *tail = &data_l[LIST_LEN - 1]; in tqueue_append() local
52 head->snode.next = (sys_snode_t *)tail; in tqueue_append()
54 k_queue_append_list(pqueue, (uint32_t *)head, (uint32_t *)tail); in tqueue_append()
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/lll/
Dlll_adv_iso.c270 link = memq_peek(stream->memq_tx.head, in prepare_cb_common()
275 &stream->memq_tx.head, in prepare_cb_common()
579 link = memq_peek(stream->memq_tx.head, in isr_tx_common()
589 &stream->memq_tx.head, in isr_tx_common()
644 link = memq_peek_n(stream->memq_tx.head, stream->memq_tx.tail, in isr_tx_common()
649 link = memq_peek_n(stream->memq_tx.head, in isr_tx_common()
Dlll_central_iso.c224 link = memq_peek(cis_lll->memq_tx.head, in prepare_cb()
233 &cis_lll->memq_tx.head, in prepare_cb()
620 link = memq_peek(cis_lll->memq_tx.head, in isr_tx()
629 &cis_lll->memq_tx.head, in isr_tx()
869 link = memq_peek(cis_lll->memq_tx.head, in isr_rx()
878 &cis_lll->memq_tx.head, in isr_rx()
964 link = memq_peek_n(cis_lll->memq_tx.head, cis_lll->memq_tx.tail, in isr_prepare_subevent()
969 link = memq_peek_n(cis_lll->memq_tx.head, in isr_prepare_subevent()
Dlll_conn.c882 link = memq_peek(lll->memq_tx.head, lll->memq_tx.tail, (void **)&tx);
1060 link = memq_peek(lll->memq_tx.head, lll->memq_tx.tail,
1099 &lll->memq_tx.head, NULL);
1286 link = memq_peek(lll->memq_tx.head, lll->memq_tx.tail, (void **)&tx);
Dlll_peripheral.c189 link = memq_peek(lll->memq_tx.head, lll->memq_tx.tail, NULL);
/Zephyr-latest/samples/modules/thrift/hello/client/
DMakefile23 BOOST_INCLUDE := $(shell find $(HOMEBREW_PREFIX) -path '*/Cellar/boost/*/include' -type d | head -n…
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/
Dull_scan_aux.c98 static void chain_remove_from_list(struct ll_scan_aux_chain **head,
100 static void chain_append_to_list(struct ll_scan_aux_chain **head, struct ll_scan_aux_chain *chain);
101 static bool chain_is_in_list(struct ll_scan_aux_chain *head, struct ll_scan_aux_chain *chain);
2878 static void chain_remove_from_list(struct ll_scan_aux_chain **head, struct ll_scan_aux_chain *chain) in chain_remove_from_list() argument
2880 struct ll_scan_aux_chain *curr = *head; in chain_remove_from_list()
2892 *head = curr->next; in chain_remove_from_list()
2899 static void chain_append_to_list(struct ll_scan_aux_chain **head, struct ll_scan_aux_chain *chain) in chain_append_to_list() argument
2901 struct ll_scan_aux_chain *prev = *head; in chain_append_to_list()
2903 if (!*head) { in chain_append_to_list()
2905 *head = chain; in chain_append_to_list()
[all …]
Dull_iso.c1631 link = memq_peek(memq_ull_iso_rx.head, memq_ull_iso_rx.tail, in iso_rx_demux()
1638 &memq_ull_iso_rx.head, NULL); in iso_rx_demux()
1645 (void)memq_dequeue(memq_ull_iso_rx.tail, &memq_ull_iso_rx.head, in iso_rx_demux()
1720 link = memq_peek(memq_ll_iso_rx.head, memq_ll_iso_rx.tail, (void **)&rx); in ll_iso_rx_get()
1727 &memq_ll_iso_rx.head, NULL); in ll_iso_rx_get()
1732 link = memq_peek(memq_ll_iso_rx.head, memq_ll_iso_rx.tail, (void **)&rx); in ll_iso_rx_get()
1746 link = memq_dequeue(memq_ll_iso_rx.tail, &memq_ll_iso_rx.head, in ll_iso_rx_dequeue()
/Zephyr-latest/samples/subsys/dap/src/
Dmain.c291 static void dapusb_interface_config(struct usb_desc_header *head, in dapusb_interface_config() argument
294 ARG_UNUSED(head); in dapusb_interface_config()
/Zephyr-latest/drivers/i2s/
Di2s_sam_ssc.c64 uint16_t head; member
122 if (rb->tail == rb->head) { in queue_get()
147 head_next = rb->head; in queue_put()
156 rb->buf[rb->head].mem_block = mem_block; in queue_put()
157 rb->buf[rb->head].size = size; in queue_put()
158 rb->head = head_next; in queue_put()
Di2s_ll_stm32.c39 if (rb->tail != rb->head) { in queue_is_empty()
83 head_next = rb->head; in queue_put()
92 rb->buf[rb->head].mem_block = mem_block; in queue_put()
93 rb->buf[rb->head].size = size; in queue_put()
94 rb->head = head_next; in queue_put()
/Zephyr-latest/drivers/bluetooth/hci/
Dhci_nxp_setup.c171 uint32_t head; member
229 fw_upload.rx.head = 0; in fw_upload_read_to_clear()
1037 err = uart_poll_in(uart_dev, &fw_upload.rx.buffer[fw_upload.rx.head]); in bt_nxp_ctlr_uart_isr()
1039 fw_upload.rx.head++; in bt_nxp_ctlr_uart_isr()
1040 fw_upload.rx.head = fw_upload.rx.head % sizeof(fw_upload.rx.buffer); in bt_nxp_ctlr_uart_isr()
1137 fw_upload.rx.head = 0; in bt_nxp_ctlr_init()
/Zephyr-latest/scripts/checkpatch/
Dcheck_known_checkpatch_issues.sh75 commit_id_str=$(git log ${git_log_params} HEAD | head -n 1)
/Zephyr-latest/drivers/usb/uvb/
Duvb.c273 if (source->head) { in handle_msg_to_host()
279 if (host_node->head && host_node->notify) { in handle_msg_to_host()
/Zephyr-latest/subsys/usb/device/class/
Dmsc.c248 uint8_t head[8]; member
255 .head = {0x00, 0x80, 0x00, 0x01, 36 - 4, 0x80, 0x00, 0x00},
953 static void mass_interface_config(struct usb_desc_header *head, in mass_interface_config() argument
956 ARG_UNUSED(head); in mass_interface_config()
Dbluetooth.c438 static void bluetooth_interface_config(struct usb_desc_header *head, in bluetooth_interface_config() argument
441 ARG_UNUSED(head); in bluetooth_interface_config()
/Zephyr-latest/tests/unit/list/
Dsflist.c149 sys_sfnode_t *head, in verify_tail_head() argument
153 if (sys_sflist_peek_head(list) != head) { in verify_tail_head()
/Zephyr-latest/subsys/usb/device/class/netusb/
Dfunction_ecm.c404 static void ecm_interface_config(struct usb_desc_header *head, in ecm_interface_config() argument
409 ARG_UNUSED(head); in ecm_interface_config()
/Zephyr-latest/include/zephyr/usb/
Dusb_device.h123 typedef void (*usb_interface_config)(struct usb_desc_header *head,
/Zephyr-latest/lib/net_buf/
Dbuf.c598 struct net_buf *net_buf_frag_add(struct net_buf *head, struct net_buf *frag) in net_buf_frag_add() argument
602 if (!head) { in net_buf_frag_add()
606 net_buf_frag_insert(net_buf_frag_last(head), frag); in net_buf_frag_add()
608 return head; in net_buf_frag_add()
/Zephyr-latest/subsys/tracing/test/
Dtracing_test.h186 sys_trace_k_queue_append_list_exit(queue, head, tail, ret)
226 #define sys_port_trace_k_fifo_put_list_enter(fifo, head, tail) \ argument
227 sys_trace_k_fifo_put_list_enter(fifo, head, tail)
229 #define sys_port_trace_k_fifo_put_list_exit(fifo, head, tail) \ argument
230 sys_trace_k_fifo_put_list_exit(fifo, head, tail)
554 void sys_trace_k_queue_append_list_exit(struct k_queue *queue, void *head, void *tail, int ret);
574 void sys_trace_k_fifo_put_list_enter(struct k_fifo *fifo, void *head, void *tail);
575 void sys_trace_k_fifo_put_list_exit(struct k_fifo *fifo, void *head, void *tail);
/Zephyr-latest/scripts/ci/
Dtest_plan.py291 head, tail = os.path.split(d)
301 … yamls_found = [yaml for yaml in glob.iglob(head + '/**/testcase.yaml', recursive=True)]
302 … yamls_found.extend([yaml for yaml in glob.iglob(head + '/**/sample.yaml', recursive=True)])
/Zephyr-latest/doc/hardware/peripherals/sensor/
Dfetch_and_get.rst65 * Driver dedicated threads will not have head of line blocking if the driver
/Zephyr-latest/doc/develop/optimizations/
Dtools.rst239 struct _dnode * head; /* 0 4 */
246 struct _dnode * head; /* 0 4 */

12345