Home
last modified time | relevance | path

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

/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/client/include/
Dsensor_client.h66 struct net_buf_simple *marshalled_sensor_data; /* Value of sensor data state (optional) */ member
/hal_espressif-latest/components/bt/esp_ble_mesh/btc/
Dbtc_ble_mesh_sensor_model.c326 if (p_src_data->status_cb.sensor_status.marshalled_sensor_data) { in btc_ble_mesh_sensor_client_copy_req_data()
327 length = p_src_data->status_cb.sensor_status.marshalled_sensor_data->len; in btc_ble_mesh_sensor_client_copy_req_data()
328 … p_dest_data->status_cb.sensor_status.marshalled_sensor_data = bt_mesh_alloc_buf(length); in btc_ble_mesh_sensor_client_copy_req_data()
329 if (!p_dest_data->status_cb.sensor_status.marshalled_sensor_data) { in btc_ble_mesh_sensor_client_copy_req_data()
333 … net_buf_simple_add_mem(p_dest_data->status_cb.sensor_status.marshalled_sensor_data, in btc_ble_mesh_sensor_client_copy_req_data()
334 … p_src_data->status_cb.sensor_status.marshalled_sensor_data->data, in btc_ble_mesh_sensor_client_copy_req_data()
335 … p_src_data->status_cb.sensor_status.marshalled_sensor_data->len); in btc_ble_mesh_sensor_client_copy_req_data()
414 bt_mesh_free_buf(arg->status_cb.sensor_status.marshalled_sensor_data); in btc_ble_mesh_sensor_client_free_req_data()
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/client/
Dsensor_client.c199 status->marshalled_sensor_data = bt_mesh_alloc_buf(buf->len); in sensor_status()
200 if (!status->marshalled_sensor_data) { in sensor_status()
205 net_buf_simple_add_mem(status->marshalled_sensor_data, buf->data, buf->len); in sensor_status()
317 bt_mesh_free_buf(status->marshalled_sensor_data); in sensor_status()
/hal_espressif-latest/components/bt/esp_ble_mesh/api/models/include/
Desp_ble_mesh_sensor_model_api.h154 struct net_buf_simple *marshalled_sensor_data; /*!< Value of sensor data state (optional) */ member