Home
last modified time | relevance | path

Searched refs:buf_add_len (Results 1 – 2 of 2) sorted by relevance

/Zephyr-Core-3.5.0/drivers/bluetooth/hci/
Dipm_stm32wb.c173 size_t buf_add_len; in bt_ipm_rx_thread() local
210 buf_add_len = hcievt->evtserial.evt.plen + 2; in bt_ipm_rx_thread()
211 if (buf_tailroom < buf_add_len) { in bt_ipm_rx_thread()
212 LOG_ERR("Not enough space in buffer %zu/%zu", buf_add_len, in bt_ipm_rx_thread()
219 buf_add_len); in bt_ipm_rx_thread()
230 buf_add_len = acl_hdr.len; in bt_ipm_rx_thread()
231 if (buf_tailroom < buf_add_len) { in bt_ipm_rx_thread()
232 LOG_ERR("Not enough space in buffer %zu/%zu", buf_add_len, in bt_ipm_rx_thread()
239 buf_add_len); in bt_ipm_rx_thread()
Duserchan.c180 size_t buf_add_len; in rx_thread() local
227 buf_add_len = decoded_len - sizeof(packet_type); in rx_thread()
228 if (buf_tailroom < buf_add_len) { in rx_thread()
230 buf_add_len, buf_tailroom); in rx_thread()
235 net_buf_add_mem(buf, frame_start + sizeof(packet_type), buf_add_len); in rx_thread()