Home
last modified time | relevance | path

Searched refs:pdu_len (Results 1 – 7 of 7) sorted by relevance

/Zephyr-latest/tests/bsim/bluetooth/host/l2cap/split/tester/src/
Dmain.c545 uint16_t pdu_len; in send_l2cap_sdu() local
562 pdu_len = MIN(sdu_len, mps); in send_l2cap_sdu()
567 pdu_len -= BT_L2CAP_SDU_HDR_SIZE; in send_l2cap_sdu()
570 net_buf_add_mem(buf, data, pdu_len); /* add data */ in send_l2cap_sdu()
572 data = &data[pdu_len]; in send_l2cap_sdu()
573 sdu_len -= pdu_len; in send_l2cap_sdu()
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/
Dull_adv_internal.h107 uint32_t ull_adv_aux_time_get(const struct ll_adv_aux_set *aux, uint8_t pdu_len,
243 uint8_t pdu_len);
Dull_adv_aux.c57 uint8_t pdu_len, uint8_t pdu_scan_len);
2742 uint32_t ull_adv_aux_time_get(const struct ll_adv_aux_set *aux, uint8_t pdu_len, in ull_adv_aux_time_get() argument
2749 return aux_time_get(aux, pdu, pdu_len, pdu_scan_len); in ull_adv_aux_time_get()
3004 uint8_t pdu_len, uint8_t pdu_scan_len) in aux_time_get() argument
3015 pdu_len = PDU_AC_EXT_PAYLOAD_OVERHEAD; in aux_time_get()
3025 time_us = PDU_AC_US(pdu_len, lll->phy_s, lll->phy_flags) + in aux_time_get()
3068 uint8_t pdu_len; in aux_time_min_get() local
3081 pdu_len = pdu->len - pdu->adv_ext_ind.ext_hdr_len - in aux_time_min_get()
3086 return aux_time_get(aux, pdu, pdu_len, pdu_scan_len); in aux_time_min_get()
Dull_adv_sync.c763 uint8_t pdu_len) in ull_adv_sync_time_get() argument
776 time_us = PDU_AC_US(pdu_len, lll->phy_s, lll->phy_flags) + in ull_adv_sync_time_get()
/Zephyr-latest/drivers/modem/
Dsimcom-sim7080.c1860 static int mdm_decode_pdu(const char *pdu, size_t pdu_len, struct sim7080_sms *target_buf) in mdm_decode_pdu() argument
1884 pdu_len = (pdu_len / 2); in mdm_decode_pdu()
1891 if (index >= pdu_len) { in mdm_decode_pdu()
1898 if (index >= pdu_len) { in mdm_decode_pdu()
1913 if (index >= pdu_len) { in mdm_decode_pdu()
1920 if (index >= pdu_len) { in mdm_decode_pdu()
1928 if ((index + 7) >= pdu_len) { in mdm_decode_pdu()
1952 if (index >= pdu_len) { in mdm_decode_pdu()
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/openisa/lll/
Dlll_adv.c985 uint8_t pdu_len; in isr_rx_sr_report() local
1001 pdu_len = offsetof(struct pdu_adv, payload) + pdu_adv_rx->len; in isr_rx_sr_report()
1002 memcpy(pdu_adv, pdu_adv_rx, pdu_len); in isr_rx_sr_report()
/Zephyr-latest/subsys/bluetooth/host/
Dl2cap.c941 uint16_t pdu_len = get_pdu_len(lechan, pdu); in l2cap_data_pull() local
944 pdu, lechan, pdu_len, pdu->len); in l2cap_data_pull()
949 hdr->len = sys_cpu_to_le16(pdu_len); in l2cap_data_pull()
952 lechan->_pdu_remaining = pdu_len + sizeof(*hdr); in l2cap_data_pull()