Searched refs:BLE_MESH_TX_SDU_MAX (Results 1 – 7 of 7) sorted by relevance
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_models/server/ |
D | sensor_server.c | 35 msg = bt_mesh_alloc_buf(MIN(BLE_MESH_TX_SDU_MAX, BLE_MESH_SERVER_RSP_MAX_LEN)); in send_sensor_descriptor_status() 48 if (total_len > MIN(BLE_MESH_TX_SDU_MAX, BLE_MESH_SERVER_RSP_MAX_LEN)) { in send_sensor_descriptor_status() 67 if (total_len > MIN(BLE_MESH_TX_SDU_MAX, BLE_MESH_SERVER_RSP_MAX_LEN)) { in send_sensor_descriptor_status() 102 msg = bt_mesh_alloc_buf(MIN(BLE_MESH_TX_SDU_MAX, BLE_MESH_SERVER_RSP_MAX_LEN)); in send_sensor_data_status() 118 if (total_len > MIN(BLE_MESH_TX_SDU_MAX, BLE_MESH_SERVER_RSP_MAX_LEN)) { in send_sensor_data_status() 147 if (total_len > MIN(BLE_MESH_TX_SDU_MAX, BLE_MESH_SERVER_RSP_MAX_LEN)) { in send_sensor_data_status() 294 msg = bt_mesh_alloc_buf(MIN(BLE_MESH_TX_SDU_MAX, BLE_MESH_SERVER_RSP_MAX_LEN)); in send_sensor_settings_status() 312 if (total_len > MIN(BLE_MESH_TX_SDU_MAX, BLE_MESH_SERVER_RSP_MAX_LEN)) { in send_sensor_settings_status()
|
D | time_scene_server.c | 504 msg = bt_mesh_alloc_buf(MIN(BLE_MESH_TX_SDU_MAX, BLE_MESH_SERVER_RSP_MAX_LEN)); in send_scene_register_status() 524 … if ((publish == false && total_len > MIN(BLE_MESH_TX_SDU_MAX, BLE_MESH_SERVER_RSP_MAX_LEN)) || in send_scene_register_status()
|
D | generic_server.c | 2190 sdu = bt_mesh_alloc_buf(MIN(BLE_MESH_TX_SDU_MAX, BLE_MESH_SERVER_RSP_MAX_LEN)); in gen_client_prop_get() 2199 if (total_len > MIN(BLE_MESH_TX_SDU_MAX, BLE_MESH_SERVER_RSP_MAX_LEN)) { in gen_client_prop_get()
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/ |
D | transport.h | 24 #define BLE_MESH_TX_SDU_MAX (CONFIG_BLE_MESH_TX_SEG_MAX * 12) macro
|
D | access.c | 784 if (msg->len > MIN(BLE_MESH_TX_SDU_MAX, BLE_MESH_SDU_MAX_LEN) - BLE_MESH_MIC_SHORT) { in model_send() 864 if (pub->msg->len + BLE_MESH_MIC_SHORT > MIN(BLE_MESH_TX_SDU_MAX, BLE_MESH_SDU_MAX_LEN)) { in bt_mesh_model_publish()
|
D | transport.c | 445 if (sdu->len > BLE_MESH_TX_SDU_MAX) { in send_seg()
|
D | cfg_srv.c | 133 sdu = bt_mesh_alloc_buf(MIN(BLE_MESH_TX_SDU_MAX, COMP_DATA_MAX_LEN)); in dev_comp_data_get()
|