Home
last modified time | relevance | path

Searched refs:net_buf_simple_pull_be16 (Results 1 – 13 of 13) sorted by relevance

/Zephyr-latest/tests/bsim/bluetooth/mesh/src/
Dgatt_common.c13 ASSERT_EQUAL(0x0201, net_buf_simple_pull_be16(buf)); in bt_mesh_test_parse_mesh_gatt_preamble()
16 ASSERT_EQUAL(0x0303, net_buf_simple_pull_be16(buf)); in bt_mesh_test_parse_mesh_gatt_preamble()
23 ASSERT_EQUAL(0x2718, net_buf_simple_pull_be16(buf)); in bt_mesh_test_parse_mesh_pb_gatt_service()
24 ASSERT_EQUAL(0x1516, net_buf_simple_pull_be16(buf)); in bt_mesh_test_parse_mesh_pb_gatt_service()
26 ASSERT_EQUAL(0x2718, net_buf_simple_pull_be16(buf)); in bt_mesh_test_parse_mesh_pb_gatt_service()
33 ASSERT_EQUAL(0x2818, net_buf_simple_pull_be16(buf)); in bt_mesh_test_parse_mesh_proxy_service()
34 ASSERT_EQUAL(0x0c16, net_buf_simple_pull_be16(buf)); in bt_mesh_test_parse_mesh_proxy_service()
36 ASSERT_EQUAL(0x2818, net_buf_simple_pull_be16(buf)); in bt_mesh_test_parse_mesh_proxy_service()
/Zephyr-latest/subsys/net/lib/mqtt_sn/
Dmqtt_sn_decoder.c53 length = net_buf_simple_pull_be16(buf); in decode_payload_length()
109 params->duration = net_buf_simple_pull_be16(buf); in decode_msg_advertise()
169 params->topic_id = net_buf_simple_pull_be16(buf); in decode_msg_register()
170 params->msg_id = net_buf_simple_pull_be16(buf); in decode_msg_register()
182 params->topic_id = net_buf_simple_pull_be16(buf); in decode_msg_regack()
183 params->msg_id = net_buf_simple_pull_be16(buf); in decode_msg_regack()
202 params->topic_id = net_buf_simple_pull_be16(buf); in decode_msg_publish()
203 params->msg_id = net_buf_simple_pull_be16(buf); in decode_msg_publish()
215 params->topic_id = net_buf_simple_pull_be16(buf); in decode_msg_puback()
216 params->msg_id = net_buf_simple_pull_be16(buf); in decode_msg_puback()
[all …]
/Zephyr-latest/subsys/bluetooth/mesh/
Dop_agg.c74 opcode = net_buf_simple_pull_be16(buf); in bt_mesh_op_agg_is_op_agg_msg()
Dheartbeat.c201 feat = net_buf_simple_pull_be16(buf); in bt_mesh_hb_recv()
Dproxy_srv.c245 addr = net_buf_simple_pull_be16(buf); in proxy_filter_recv()
254 addr = net_buf_simple_pull_be16(buf); in proxy_filter_recv()
Dbeacon.c421 oob_info = net_buf_simple_pull_be16(buf); in unprovisioned_beacon_recv()
Dtransport.c861 seq_zero = net_buf_simple_pull_be16(buf); in trans_ack()
1362 seq_zero = net_buf_simple_pull_be16(buf); in trans_seg()
Dfriend.c651 friend_sub_add(frnd, net_buf_simple_pull_be16(buf)); in bt_mesh_friend_sub_add()
686 friend_sub_rem(frnd, net_buf_simple_pull_be16(buf)); in bt_mesh_friend_sub_rem()
Dpb_adv.c604 link.rx.buf->len = net_buf_simple_pull_be16(buf); in gen_prov_start()
Daccess.c1455 *opcode = net_buf_simple_pull_be16(buf); in get_opcode()
/Zephyr-latest/tests/lib/net_buf/buf_simple/src/
Dmain.c63 zassert_equal(u16, net_buf_simple_pull_be16(&buf), in ZTEST()
/Zephyr-latest/include/zephyr/
Dnet_buf.h774 uint16_t net_buf_simple_pull_be16(struct net_buf_simple *buf);
2334 return net_buf_simple_pull_be16(&buf->b); in net_buf_pull_be16()
/Zephyr-latest/lib/net_buf/
Dbuf_simple.c491 uint16_t net_buf_simple_pull_be16(struct net_buf_simple *buf) in net_buf_simple_pull_be16() function