Home
last modified time | relevance | path

Searched refs:queue (Results 1 – 10 of 10) sorted by relevance

/btstack/src/
H A Dbtstack_linked_queue.c48 bool btstack_linked_queue_empty(btstack_linked_queue_t * queue){ in btstack_linked_queue_empty() argument
49 return queue->head == NULL; in btstack_linked_queue_empty()
57 void btstack_linked_queue_enqueue(btstack_linked_queue_t * queue, btstack_linked_item_t * item){ in btstack_linked_queue_enqueue() argument
58 if (queue->head == NULL){ in btstack_linked_queue_enqueue()
61 queue->head = item; in btstack_linked_queue_enqueue()
62 queue->tail = item; in btstack_linked_queue_enqueue()
66 queue->tail->next = item; in btstack_linked_queue_enqueue()
67 queue->tail = item; in btstack_linked_queue_enqueue()
76 btstack_linked_item_t * btstack_linked_queue_first(btstack_linked_queue_t * queue){ in btstack_linked_queue_first() argument
77 return queue->head; in btstack_linked_queue_first()
[all …]
H A Dbtstack_linked_queue.h64 bool btstack_linked_queue_empty(btstack_linked_queue_t * queue);
71 void btstack_linked_queue_enqueue(btstack_linked_queue_t * queue, btstack_linked_item_t * item);
78 btstack_linked_item_t * btstack_linked_queue_dequeue(btstack_linked_queue_t * queue);
85 btstack_linked_item_t * btstack_linked_queue_first(btstack_linked_queue_t * queue);
/btstack/port/samv71-xplained-atwilc3000/ASF/sam/drivers/pio/
H A Dpio.c1369 uint8_t pio_keypad_get_press_row_index(const Pio *p_pio, uint8_t queue) argument
1371 switch (queue) {
1393 uint8_t pio_keypad_get_press_column_index(const Pio *p_pio, uint8_t queue) argument
1395 switch (queue) {
1417 uint8_t pio_keypad_get_release_row_index(const Pio *p_pio, uint8_t queue) argument
1419 switch (queue) {
1441 uint8_t pio_keypad_get_release_column_index(const Pio *p_pio, uint8_t queue) argument
1443 switch (queue) {
H A Dpio.h240 uint8_t pio_keypad_get_press_row_index(const Pio *p_pio, uint8_t queue);
241 uint8_t pio_keypad_get_press_column_index(const Pio *p_pio, uint8_t queue);
242 uint8_t pio_keypad_get_release_row_index(const Pio *p_pio, uint8_t queue);
243 uint8_t pio_keypad_get_release_column_index(const Pio *p_pio, uint8_t queue);
/btstack/3rd-party/lwip/core/src/core/
H A Dtcp_out.c393 struct tcp_seg *last_unsent = NULL, *seg = NULL, *prev_seg = NULL, *queue = NULL; in tcp_write() local
610 …loc(PBUF_TRANSPORT, seglen + optlen, mss_local, &oversize, pcb, apiflags, queue == NULL)) == NULL)… in tcp_write()
679 if (queue == NULL) { in tcp_write()
680 queue = seg; in tcp_write()
771 pcb->unsent = queue; in tcp_write()
773 last_unsent->next = queue; in tcp_write()
803 if (queue != NULL) { in tcp_write()
804 tcp_segs_free(queue); in tcp_write()
/btstack/port/stm32-wb55xx-nucleo-freertos/
H A DMakefile86 $(FREERTOS_ROOT)/FreeRTOS/queue.c \
/btstack/3rd-party/lwip/core/
H A DCHANGELOG1083 * etharp.c, opt.h: fixed bug #34681 Limit ARP queue length by ARP_QUEUE_LEN (=3)
1133 * tcp.c: fixed bug #39898 tcp_fasttmr() possible lock due to infinte queue process loop
1220 * opt.h, tcp.c, tcp_in.c: Implemented limiting data on ooseq queue (task #9989)
1326 queue while closing
1407 * tcp_in.c: fixed bug #28288: Data after FIN in oos queue
1798 * etharp.c: Fixed bug #31720: ARP-queueing: RFC 1122 recommends to queue at
2197 sequence queue, also fixed PBUF_POOL leak in the out-of-sequence code
2739 "backlog" parameter in an u8_t, 0 is interpreted as "smallest queue", add
4007 * tcp_out.c: Fixed uninitialized 'queue' referenced in memerr branch.
4019 * etharp.*: Disabled multiple packets on the ARP queue.
[all …]
/btstack/doc/manual/docs-template/
H A Dhow_to.md195 | MAX_NR_SM_LOOKUP_ENTRIES | Max number of items in Security Manager lookup queue
439 The FreeRTOS run loop is used on a dedicated FreeRTOS thread and it uses a FreeRTOS queue to schedu…
494 Instead, the run loop provides a message queue that allows to schedule functions calls on its threa…
/btstack/
H A DCHANGELOG.md186 - GATT Client: allow to queue requests with gatt_client_request_to_send_gatt_query and gatt_client_…
704 - New `btstack_linked_queue` utility, a linked list-based queue with first-in-first-out semantics a…
1074 - SDP Server: queue incoming connections when already connected instead of rejecting them
/btstack/chipset/
H A DREADME.md99 … useful flow control. On CSR/Broadcom/Cypress Controllers, BTstack cannot queue multiple SCO packe…