Home
last modified time | relevance | path

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

/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/server/
Dgeneric_server.c86 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_send(model, ctx, msg, NULL, NULL)); in send_gen_onoff_status()
89 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_publish(model)); in send_gen_onoff_status()
267 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_send(model, ctx, msg, NULL, NULL)); in send_gen_level_status()
270 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_publish(model)); in send_gen_level_status()
682 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_send(model, ctx, msg, NULL, NULL)); in send_gen_def_trans_time_status()
685 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_publish(model)); in send_gen_def_trans_time_status()
805 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_send(model, ctx, msg, NULL, NULL)); in send_gen_onpowerup_status()
808 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_publish(model)); in send_gen_onpowerup_status()
989 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_send(model, ctx, msg, NULL, NULL)); in send_gen_power_level_status()
992 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_publish(model)); in send_gen_power_level_status()
[all …]
Dsensor_server.c87 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_send(model, ctx, msg, NULL, NULL)); in send_sensor_descriptor_status()
177 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_send(model, ctx, msg, NULL, NULL)); in send_sensor_data_status()
275 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_send(model, ctx, msg, NULL, NULL)); in send_sensor_cadence_status()
278 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_publish(model)); in send_sensor_cadence_status()
327 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_send(model, ctx, msg, NULL, NULL)); in send_sensor_settings_status()
418 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_send(model, ctx, msg, NULL, NULL)); in send_sensor_setting_status()
421 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_publish(model)); in send_sensor_setting_status()
496 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_send(model, ctx, msg, NULL, NULL)); in send_sensor_column_status()
571 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_send(model, ctx, msg, NULL, NULL)); in send_sensor_series_status()
Dtime_scene_server.c146 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_send(model, ctx, msg, NULL, NULL)); in send_time_status()
149 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_publish(model)); in send_time_status()
480 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_send(model, ctx, msg, NULL, NULL)); in send_scene_status()
483 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_publish(model)); in send_scene_status()
535 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_send(model, ctx, msg, NULL, NULL)); in send_scene_register_status()
538 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_publish(model)); in send_scene_register_status()
985 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_send(model, ctx, &msg, NULL, NULL)); in send_scheduler_act_status()
1011 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_send(model, ctx, &msg, NULL, NULL)); in scheduler_get()
Dlighting_server.c135 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_send(model, ctx, msg, NULL, NULL)); in send_light_lightness_status()
138 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_publish(model)); in send_light_lightness_status()
636 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_send(model, ctx, msg, NULL, NULL)); in send_light_ctl_status()
639 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_publish(model)); in send_light_ctl_status()
1222 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_send(model, ctx, msg, NULL, NULL)); in send_light_hsl_status()
1225 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_publish(model)); in send_light_hsl_status()
1894 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_send(model, ctx, msg, NULL, NULL)); in send_light_xyl_status()
1897 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_publish(model)); in send_light_xyl_status()
2271 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_send(model, ctx, msg, NULL, NULL)); in send_light_lc_status()
2274 BLE_MESH_CHECK_SEND_STATUS(bt_mesh_model_publish(model)); in send_light_lc_status()
[all …]
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/server/include/
Dserver_common.h22 #define BLE_MESH_CHECK_SEND_STATUS(_func) do { \ macro