Home
last modified time | relevance | path

Searched refs:net_buf_simple_push_u8 (Results 1 – 6 of 6) sorted by relevance

/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/
Dproxy_client.c354 net_buf_simple_push_u8(msg, PDU_HDR(SAR_COMPLETE, type)); in proxy_segment_and_send()
358 net_buf_simple_push_u8(msg, PDU_HDR(SAR_FIRST, type)); in proxy_segment_and_send()
364 net_buf_simple_push_u8(msg, PDU_HDR(SAR_LAST, type)); in proxy_segment_and_send()
369 net_buf_simple_push_u8(msg, PDU_HDR(SAR_CONT, type)); in proxy_segment_and_send()
Dproxy_server.c1053 net_buf_simple_push_u8(msg, PDU_HDR(SAR_COMPLETE, type)); in proxy_segment_and_send()
1057 net_buf_simple_push_u8(msg, PDU_HDR(SAR_FIRST, type)); in proxy_segment_and_send()
1063 net_buf_simple_push_u8(msg, PDU_HDR(SAR_LAST, type)); in proxy_segment_and_send()
1068 net_buf_simple_push_u8(msg, PDU_HDR(SAR_CONT, type)); in proxy_segment_and_send()
Dnet.c883 net_buf_simple_push_u8(buf, tx->ctx->send_ttl | 0x80); in bt_mesh_net_encode()
885 net_buf_simple_push_u8(buf, tx->ctx->send_ttl); in bt_mesh_net_encode()
906 net_buf_simple_push_u8(buf, (nid | (BLE_MESH_NET_IVI_TX & 1) << 7)); in bt_mesh_net_encode()
Dfriend.c556 net_buf_simple_push_u8(sdu, TRANS_CTL_HDR(ctl_op, 0)); in encode_friend_ctl()
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/include/
Dmesh_buf.h398 void net_buf_simple_push_u8(struct net_buf_simple *buf, uint8_t val);
1283 #define net_buf_push_u8(buf, val) net_buf_simple_push_u8(&(buf)->b, val)
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/
Dmesh_buf.c163 void net_buf_simple_push_u8(struct net_buf_simple *buf, uint8_t val) in net_buf_simple_push_u8() function