Searched refs:hb_dst (Results 1 – 6 of 6) sorted by relevance
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/ |
D | provisioner_main.h | 122 typedef void (* bt_mesh_heartbeat_recv_cb_t)(uint16_t hb_src, uint16_t hb_dst, 132 void bt_mesh_provisioner_heartbeat(uint16_t hb_src, uint16_t hb_dst,
|
D | provisioner_main.c | 1664 static bool filter_with_rejectlist(uint16_t hb_src, uint16_t hb_dst) in filter_with_rejectlist() argument 1670 if (hb_src == filter->src && hb_dst == filter->dst) { in filter_with_rejectlist() 1678 static bool filter_with_acceptlist(uint16_t hb_src, uint16_t hb_dst) in filter_with_acceptlist() argument 1684 if (hb_src == filter->src && hb_dst == filter->dst) { in filter_with_acceptlist() 1692 void bt_mesh_provisioner_heartbeat(uint16_t hb_src, uint16_t hb_dst, in bt_mesh_provisioner_heartbeat() argument 1702 if (filter_with_rejectlist(hb_src, hb_dst)) { in bt_mesh_provisioner_heartbeat() 1703 BT_INFO("Filtered by rejectlist, src 0x%04x, dst 0x%04x", hb_src, hb_dst); in bt_mesh_provisioner_heartbeat() 1707 if (filter_with_acceptlist(hb_src, hb_dst)) { in bt_mesh_provisioner_heartbeat() 1708 BT_INFO("Filtered by acceptlist, src 0x%04x, dst 0x%04x", hb_src, hb_dst); in bt_mesh_provisioner_heartbeat() 1714 hb_rx.cb(hb_src, hb_dst, init_ttl, rx_ttl, hops, feat, rssi); in bt_mesh_provisioner_heartbeat()
|
/hal_espressif-latest/components/bt/esp_ble_mesh/api/core/ |
D | esp_ble_mesh_networking_api.c | 573 (ESP_BLE_MESH_ADDR_IS_UNICAST(info->hb_dst) || in esp_ble_mesh_provisioner_set_heartbeat_filter_info() 574 ESP_BLE_MESH_ADDR_IS_GROUP(info->hb_dst)))) { in esp_ble_mesh_provisioner_set_heartbeat_filter_info() 586 arg.set_heartbeat_filter_info.hb_dst = info->hb_dst; in esp_ble_mesh_provisioner_set_heartbeat_filter_info()
|
/hal_espressif-latest/components/bt/esp_ble_mesh/btc/include/ |
D | btc_ble_mesh_prov.h | 229 uint16_t hb_dst; member
|
/hal_espressif-latest/components/bt/esp_ble_mesh/api/ |
D | esp_ble_mesh_defs.h | 802 uint16_t hb_dst; /*!< Heartbeat destination address (unicast address or group address) */ member 1255 uint16_t hb_dst; /*!< Heartbeat destination address */ member 1262 uint16_t hb_dst; /*!< Heartbeat destination address */ member
|
/hal_espressif-latest/components/bt/esp_ble_mesh/btc/ |
D | btc_ble_mesh_prov.c | 843 static void btc_ble_mesh_provisioner_recv_heartbeat_cb(uint16_t hb_src, uint16_t hb_dst, in btc_ble_mesh_provisioner_recv_heartbeat_cb() argument 850 mesh_param.provisioner_recv_heartbeat.hb_dst = hb_dst; in btc_ble_mesh_provisioner_recv_heartbeat_cb() 2114 … param.provisioner_set_heartbeat_filter_info_comp.hb_dst = arg->set_heartbeat_filter_info.hb_dst; in btc_ble_mesh_prov_call_handler() 2118 arg->set_heartbeat_filter_info.hb_dst); in btc_ble_mesh_prov_call_handler()
|