Searched refs:BT_MESH_PROV_GATT (Results 1 – 12 of 12) sorted by relevance
/AliOS-Things-master/components/ble_mesh/bt_mesh/core/src/ |
A D | main.c | 187 if (bearers >= (BT_MESH_PROV_GATT << 1) || bearers == 0) { in bt_mesh_prov_enable() 210 if (IS_ENABLED(CONFIG_BT_MESH_PB_GATT) && (bearers & BT_MESH_PROV_GATT)) { in bt_mesh_prov_enable() 224 if (bearers >= (BT_MESH_PROV_GATT << 1) || bearers == 0) { in bt_mesh_prov_disable() 237 if (IS_ENABLED(CONFIG_BT_MESH_PB_GATT) && (bearers & BT_MESH_PROV_GATT)) { in bt_mesh_prov_disable() 355 if (bearers >= (BT_MESH_PROV_GATT << 1) || bearers == 0) { in bt_mesh_provisioner_enable() 371 (IS_ENABLED(CONFIG_BT_MESH_PB_GATT) && (bearers & BT_MESH_PROV_GATT))) { in bt_mesh_provisioner_enable() 375 if (IS_ENABLED(CONFIG_BT_MESH_PB_GATT) && (bearers & BT_MESH_PROV_GATT)) { in bt_mesh_provisioner_enable() 386 if (bearers >= (BT_MESH_PROV_GATT << 1) || bearers == 0) { in bt_mesh_provisioner_disable() 395 if (IS_ENABLED(CONFIG_BT_MESH_PB_GATT) && (bearers & BT_MESH_PROV_GATT)) { in bt_mesh_provisioner_disable() 400 (IS_ENABLED(CONFIG_BT_MESH_PB_GATT) && (bearers & BT_MESH_PROV_GATT))) { in bt_mesh_provisioner_disable()
|
A D | provisioner_prov.c | 614 if ((add_dev->bearer & BT_MESH_PROV_ADV) && (add_dev->bearer & BT_MESH_PROV_GATT) && in bt_mesh_provisioner_add_unprov_dev() 625 if ((add_dev->bearer & BT_MESH_PROV_GATT) && (flags & START_PROV_NOW) && in bt_mesh_provisioner_add_unprov_dev() 631 if (add_dev->bearer & BT_MESH_PROV_GATT) { in bt_mesh_provisioner_add_unprov_dev() 798 } else if (add_dev->bearer & BT_MESH_PROV_GATT) { in bt_mesh_provisioner_add_unprov_dev() 3277 …provisioner->prov_link_open(BT_MESH_PROV_GATT, link[i].addr.a.val, link[i].addr.type, link[i].uuid… in provisioner_pb_gatt_open() 3283 …provisioner->prov_link_open(BT_MESH_PROV_GATT, link[i].addr.a.val, link[i].addr.type, link[i].uuid… in provisioner_pb_gatt_open() 3334 …provisioner->prov_link_close(BT_MESH_PROV_GATT, reason, link[i].addr.a.val, link[i].addr.type, lin… in provisioner_pb_gatt_close() 3338 …provisioner->prov_link_close(BT_MESH_PROV_GATT, reason, link[i].addr.a.val, link[i].addr.type, lin… in provisioner_pb_gatt_close()
|
A D | prov.c | 1676 prov->link_open(BT_MESH_PROV_GATT); in bt_mesh_pb_gatt_open() 1694 prov->link_close(BT_MESH_PROV_GATT); in bt_mesh_pb_gatt_close()
|
/AliOS-Things-master/components/genie_service/core/src/ |
A D | genie_event.c | 38 bt_mesh_prov_enable(BT_MESH_PROV_GATT | BT_MESH_PROV_ADV); in _genie_event_handle_mesh_init() 51 bt_mesh_prov_enable(BT_MESH_PROV_GATT | BT_MESH_PROV_ADV); in _genie_event_handle_mesh_init() 86 bt_mesh_prov_disable(BT_MESH_PROV_GATT | BT_MESH_PROV_ADV); in _genie_event_handle_pbadv_timeout() 138 bt_mesh_prov_enable(BT_MESH_PROV_GATT | BT_MESH_PROV_ADV); in _genie_event_handle_prov_fail() 223 if (0 == bt_mesh_prov_enable(BT_MESH_PROV_GATT | BT_MESH_PROV_ADV)) in _genie_event_handle_ais_discon()
|
A D | genie_bin_cmds.c | 48 bt_mesh_prov_disable(BT_MESH_PROV_GATT | BT_MESH_PROV_ADV); in mesh_adv_ctl() 54 bt_mesh_prov_enable(BT_MESH_PROV_GATT | BT_MESH_PROV_ADV); in mesh_adv_ctl()
|
A D | genie_reset.c | 92 bt_mesh_prov_enable(BT_MESH_PROV_GATT | BT_MESH_PROV_ADV); in delay_reset_timer_cb()
|
A D | genie_at.c | 437 bt_mesh_prov_disable(BT_MESH_PROV_GATT | BT_MESH_PROV_ADV); in genie_at_cmd_adv_start() 443 bt_mesh_prov_enable(BT_MESH_PROV_GATT | BT_MESH_PROV_ADV); in genie_at_cmd_adv_start()
|
/AliOS-Things-master/components/ble_mesh/bt_mesh/mesh_provisioner/ |
A D | mesh_provisioner.c | 242 …} else if (BT_MESH_PROV_GATT == bearer && (reason && LOCAL_USER_TERM_CONN != reason) && g_mesh_pro… in provisioner_link_close() 268 node.bearer = gatt_flag?BT_MESH_PROV_GATT:BT_MESH_PROV_ADV; in provisioner_complete() 325 ret = bt_mesh_provisioner_enable(BT_MESH_PROV_ADV | BT_MESH_PROV_GATT); in ble_mesh_provisioner_enable() 351 ret = bt_mesh_provisioner_disable(BT_MESH_PROV_ADV | BT_MESH_PROV_GATT); in ble_mesh_provisioner_disable()
|
/AliOS-Things-master/components/ble_mesh/bt_mesh/core/inc/api/mesh/ |
A D | main.h | 49 BT_MESH_PROV_GATT = BITN(1), enumerator
|
/AliOS-Things-master/components/ble_mesh/bt_mesh/mesh_node/ |
A D | mesh_node.c | 378 case BT_MESH_PROV_GATT: in bearer2str() 412 bt_mesh_prov_enable(BT_MESH_PROV_ADV | BT_MESH_PROV_GATT); in prov_reset() 988 bt_mesh_prov_enable(BT_MESH_PROV_ADV | BT_MESH_PROV_GATT); in ble_mesh_node_init()
|
/AliOS-Things-master/components/ble_host/bt_host/ali_vendormodel_profile/ |
A D | ali_vendormodel_profile.c | 452 ret = bt_mesh_prov_enable(BT_MESH_PROV_GATT | BT_MESH_PROV_ADV); in bt_mesh_ready()
|
/AliOS-Things-master/components/ble_mesh/bt_shell/bt_mesh/ |
A D | shell.c | 486 case BT_MESH_PROV_GATT: in bearer2str() 2582 return cmd_pb(BT_MESH_PROV_GATT, argc, argv); in cmd_pb_gatt()
|
Completed in 28 milliseconds