Lines Matching refs:rsp_buf
1148 struct net_buf *rsp_buf; in smp_br_pairing_req() local
1177 rsp_buf = smp_br_create_pdu(smp, BT_SMP_CMD_PAIRING_RSP, sizeof(*rsp)); in smp_br_pairing_req()
1178 if (!rsp_buf) { in smp_br_pairing_req()
1191 rsp = net_buf_add(rsp_buf, sizeof(*rsp)); in smp_br_pairing_req()
1208 smp_br_send(smp, rsp_buf, NULL); in smp_br_pairing_req()
1903 struct net_buf *rsp_buf; in smp_send_pairing_random() local
1905 rsp_buf = smp_create_pdu(smp, BT_SMP_CMD_PAIRING_RANDOM, sizeof(*req)); in smp_send_pairing_random()
1906 if (!rsp_buf) { in smp_send_pairing_random()
1910 req = net_buf_add(rsp_buf, sizeof(*req)); in smp_send_pairing_random()
1913 smp_send(smp, rsp_buf, NULL, NULL); in smp_send_pairing_random()
2170 struct net_buf *rsp_buf; in send_pairing_rsp() local
2172 rsp_buf = smp_create_pdu(smp, BT_SMP_CMD_PAIRING_RSP, sizeof(*rsp)); in send_pairing_rsp()
2173 if (!rsp_buf) { in send_pairing_rsp()
2177 rsp = net_buf_add(rsp_buf, sizeof(*rsp)); in send_pairing_rsp()
2180 smp_send(smp, rsp_buf, NULL, NULL); in send_pairing_rsp()