Home
last modified time | relevance | path

Searched refs:req_buf (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/subsys/bluetooth/host/
Dsmp_null.c42 static int bt_smp_recv(struct bt_l2cap_chan *chan, struct net_buf *req_buf) in bt_smp_recv() argument
49 ARG_UNUSED(req_buf); in bt_smp_recv()
Dsmp.c1638 struct net_buf *req_buf; in bt_smp_br_send_pairing_req() local
1683 req_buf = smp_br_create_pdu(smp, BT_SMP_CMD_PAIRING_REQ, sizeof(*req)); in bt_smp_br_send_pairing_req()
1684 if (!req_buf) { in bt_smp_br_send_pairing_req()
1688 req = net_buf_add(req_buf, sizeof(*req)); in bt_smp_br_send_pairing_req()
1704 smp_br_send(smp, req_buf, NULL); in bt_smp_br_send_pairing_req()
2909 struct net_buf *req_buf; in smp_send_security_req() local
2948 req_buf = smp_create_pdu(smp, BT_SMP_CMD_SECURITY_REQUEST, in smp_send_security_req()
2950 if (!req_buf) { in smp_send_security_req()
2954 req = net_buf_add(req_buf, sizeof(*req)); in smp_send_security_req()
2958 err = bt_l2cap_send_pdu(&smp->chan, req_buf, NULL, NULL); in smp_send_security_req()
[all …]
/Zephyr-latest/subsys/dap/
Dcmsis_dap.c478 const uint8_t *req_buf; in dap_swdp_transfer() local
490 req_buf = request + sizeof(req_cnt) + 1; in dap_swdp_transfer()
494 req_val = *req_buf++; in dap_swdp_transfer()
521 match_val = sys_get_le32(req_buf); in dap_swdp_transfer()
522 req_buf += sizeof(match_val); in dap_swdp_transfer()
567 data = sys_get_le32(req_buf); in dap_swdp_transfer()
568 req_buf += sizeof(data); in dap_swdp_transfer()
701 const uint8_t *req_buf; in dap_swdp_transferblock() local
709 req_buf = request + (sizeof(req_cnt) + sizeof(req_val) + 1); in dap_swdp_transferblock()
748 data = sys_get_le32(req_buf); in dap_swdp_transferblock()
[all …]