Home
last modified time | relevance | path

Searched refs:bt_mesh_cdb (Results 1 – 5 of 5) sorted by relevance

/Zephyr-Core-3.7.0/subsys/bluetooth/mesh/
Dcdb.c26 LOG_MODULE_REGISTER(bt_mesh_cdb);
84 struct bt_mesh_cdb bt_mesh_cdb = { variable
120 for (i = 0; i < ARRAY_SIZE(bt_mesh_cdb.nodes); i++) { in addr_is_free()
121 struct bt_mesh_cdb_node *node = &bt_mesh_cdb.nodes[i]; in addr_is_free()
153 uint16_t addr = bt_mesh_cdb.lowest_avail_addr; in find_lowest_free_addr()
162 for (i = 0; i < ARRAY_SIZE(bt_mesh_cdb.nodes) + 2; ++i) { in find_lowest_free_addr()
200 bt_mesh_cdb.iv_index = net.iv.index; in cdb_net_set()
203 atomic_set_bit(bt_mesh_cdb.flags, BT_MESH_CDB_IVU_IN_PROGRESS); in cdb_net_set()
206 bt_mesh_cdb.lowest_avail_addr = net.lowest_avail_addr; in cdb_net_set()
208 atomic_set_bit(bt_mesh_cdb.flags, BT_MESH_CDB_VALID); in cdb_net_set()
[all …]
Dprovisioner.c545 net_buf_simple_add_be32(&pdu, bt_mesh_cdb.iv_index); in send_prov_data()
880 provisionee.node->net_idx, bt_mesh_cdb.iv_index, addr); in reprovision_local_client_server()
Dmain.c70 atomic_test_bit(bt_mesh_cdb.flags, BT_MESH_CDB_VALID)) { in bt_mesh_provision()
/Zephyr-Core-3.7.0/include/zephyr/bluetooth/mesh/
Dcdb.h74 struct bt_mesh_cdb { struct
85 extern struct bt_mesh_cdb bt_mesh_cdb; argument
/Zephyr-Core-3.7.0/subsys/bluetooth/mesh/shell/
Dshell.c1228 for (i = 0; i < ARRAY_SIZE(bt_mesh_cdb.nodes); ++i) { in cdb_print_nodes()
1229 node = &bt_mesh_cdb.nodes[i]; in cdb_print_nodes()
1261 for (i = 0; i < ARRAY_SIZE(bt_mesh_cdb.subnets); ++i) { in cdb_print_subnets()
1262 subnet = &bt_mesh_cdb.subnets[i]; in cdb_print_subnets()
1290 for (i = 0; i < ARRAY_SIZE(bt_mesh_cdb.app_keys); ++i) { in cdb_print_app_keys()
1291 key = &bt_mesh_cdb.app_keys[i]; in cdb_print_app_keys()
1312 if (!atomic_test_bit(bt_mesh_cdb.flags, BT_MESH_CDB_VALID)) { in cmd_cdb_show()