Home
last modified time | relevance | path

Searched refs:sensor_series_value (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/client/include/
Dsensor_client.h76 struct net_buf_simple *sensor_series_value; /* Left values of sensor series status */ member
/hal_espressif-latest/components/bt/esp_ble_mesh/btc/
Dbtc_ble_mesh_sensor_model.c354 if (p_src_data->status_cb.series_status.sensor_series_value) { in btc_ble_mesh_sensor_client_copy_req_data()
355 length = p_src_data->status_cb.series_status.sensor_series_value->len; in btc_ble_mesh_sensor_client_copy_req_data()
356 … p_dest_data->status_cb.series_status.sensor_series_value = bt_mesh_alloc_buf(length); in btc_ble_mesh_sensor_client_copy_req_data()
357 if (!p_dest_data->status_cb.series_status.sensor_series_value) { in btc_ble_mesh_sensor_client_copy_req_data()
361 net_buf_simple_add_mem(p_dest_data->status_cb.series_status.sensor_series_value, in btc_ble_mesh_sensor_client_copy_req_data()
362 … p_src_data->status_cb.series_status.sensor_series_value->data, in btc_ble_mesh_sensor_client_copy_req_data()
363 … p_src_data->status_cb.series_status.sensor_series_value->len); in btc_ble_mesh_sensor_client_copy_req_data()
422 bt_mesh_free_buf(arg->status_cb.series_status.sensor_series_value); in btc_ble_mesh_sensor_client_free_req_data()
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/client/
Dsensor_client.c237 status->sensor_series_value = bt_mesh_alloc_buf(buf->len); in sensor_status()
238 if (!status->sensor_series_value) { in sensor_status()
243 net_buf_simple_add_mem(status->sensor_series_value, buf->data, buf->len); in sensor_status()
329 bt_mesh_free_buf(status->sensor_series_value); in sensor_status()
/hal_espressif-latest/components/bt/esp_ble_mesh/api/models/include/
Desp_ble_mesh_sensor_model_api.h166 struct net_buf_simple *sensor_series_value; /*!< Left values of sensor series status */ member