Lines Matching refs:ext_item
2410 struct bt_mesh_comp_p1_model_item *item, struct bt_mesh_comp_p1_item_short *ext_item) in comp_p1_pull_item_short() argument
2426 ext_item->elem_offset = OFFSET(item_data); in comp_p1_pull_item_short()
2427 ext_item->mod_item_idx = IDX(item_data); in comp_p1_pull_item_short()
2428 return ext_item; in comp_p1_pull_item_short()
2432 struct bt_mesh_comp_p1_model_item *item, struct bt_mesh_comp_p1_item_long *ext_item) in comp_p1_pull_item_long() argument
2447 ext_item->elem_offset = net_buf_simple_pull_u8(item->_buf); in comp_p1_pull_item_long()
2448 ext_item->mod_item_idx = net_buf_simple_pull_u8(item->_buf); in comp_p1_pull_item_long()
2450 return ext_item; in comp_p1_pull_item_long()
2454 struct bt_mesh_comp_p1_model_item *item, struct bt_mesh_comp_p1_ext_item *ext_item) in bt_mesh_comp_p1_pull_ext_item() argument
2461 ext_item->type = SHORT; in bt_mesh_comp_p1_pull_ext_item()
2462 comp_p1_pull_item_short(item, &ext_item->short_item); in bt_mesh_comp_p1_pull_ext_item()
2465 ext_item->type = LONG; in bt_mesh_comp_p1_pull_ext_item()
2466 comp_p1_pull_item_long(item, &ext_item->long_item); in bt_mesh_comp_p1_pull_ext_item()
2468 return ext_item; in bt_mesh_comp_p1_pull_ext_item()