Lines Matching refs:step_data_buf
600 struct net_buf_simple step_data_buf; in bt_hci_le_cs_subevent_result() local
628 p_result->step_data_buf = NULL; in bt_hci_le_cs_subevent_result()
630 net_buf_simple_init_with_data(&step_data_buf, evt->steps, buf->len); in bt_hci_le_cs_subevent_result()
631 p_result->step_data_buf = &step_data_buf; in bt_hci_le_cs_subevent_result()
651 p_result->step_data_buf = (struct net_buf_simple *)&reassembly_buf->data; in bt_hci_le_cs_subevent_result()
1311 void bt_le_cs_step_data_parse(struct net_buf_simple *step_data_buf, in bt_le_cs_step_data_parse() argument
1315 if (!step_data_buf) { in bt_le_cs_step_data_parse()
1320 while (step_data_buf->len > 1) { in bt_le_cs_step_data_parse()
1323 step.mode = net_buf_simple_pull_u8(step_data_buf); in bt_le_cs_step_data_parse()
1324 step.channel = net_buf_simple_pull_u8(step_data_buf); in bt_le_cs_step_data_parse()
1325 step.data_len = net_buf_simple_pull_u8(step_data_buf); in bt_le_cs_step_data_parse()
1332 step.data = step_data_buf->data; in bt_le_cs_step_data_parse()
1334 if (step.data_len > step_data_buf->len) { in bt_le_cs_step_data_parse()
1343 net_buf_simple_pull(step_data_buf, step.data_len); in bt_le_cs_step_data_parse()