Lines Matching full:buf
15 struct net_buf *buf; in bt_hci_evt_create() local
17 buf = bt_buf_get_evt(evt, false, K_FOREVER); in bt_hci_evt_create()
19 BT_ASSERT(buf); in bt_hci_evt_create()
21 hdr = net_buf_add(buf, sizeof(*hdr)); in bt_hci_evt_create()
25 return buf; in bt_hci_evt_create()
30 struct net_buf *buf; in bt_hci_cmd_complete_create() local
33 buf = bt_hci_evt_create(BT_HCI_EVT_CMD_COMPLETE, sizeof(*cc) + plen); in bt_hci_cmd_complete_create()
35 cc = net_buf_add(buf, sizeof(*cc)); in bt_hci_cmd_complete_create()
39 return buf; in bt_hci_cmd_complete_create()
44 struct net_buf *buf; in bt_hci_cmd_status_create() local
47 buf = bt_hci_evt_create(BT_HCI_EVT_CMD_STATUS, sizeof(*cs)); in bt_hci_cmd_status_create()
49 cs = net_buf_add(buf, sizeof(*cs)); in bt_hci_cmd_status_create()
54 return buf; in bt_hci_cmd_status_create()