/Zephyr-latest/samples/net/wpan_serial/src/ |
D | main.c | 214 uint8_t cmd = net_buf_pull_u8(buf); in process_request() 245 seq = net_buf_pull_u8(buf); in process_data() 246 num_attr = net_buf_pull_u8(buf); in process_data() 257 net_buf_pull_u8(buf); in process_data() 286 uint8_t cmd = net_buf_pull_u8(buf); in process_config() 295 set_channel(net_buf_pull_u8(buf)); in process_config() 323 specifier = net_buf_pull_u8(buf); in rx_thread() 352 uint8_t byte = net_buf_pull_u8(buf); in slip_buffer()
|
/Zephyr-latest/subsys/bluetooth/host/classic/ |
D | avdtp.c | 251 req->status = net_buf_pull_u8(buf); in avdtp_set_status() 351 sep = avdtp_get_sep(net_buf_pull_u8(buf) >> 2); in avdtp_get_cmd_sep() 461 int_seid = net_buf_pull_u8(buf) >> 2; in avdtp_process_configuration() 519 net_buf_pull_u8(buf); in avdtp_process_configuration() 697 acp_seid = net_buf_pull_u8(buf); in avdtp_start_handler() 842 acp_seid = net_buf_pull_u8(buf); in avdtp_suspend_handler() 928 acp_seid = net_buf_pull_u8(buf); in avdtp_abort_handler() 1109 sigid = net_buf_pull_u8(buf); in bt_avdtp_l2cap_recv() 1380 data = net_buf_pull_u8(buf); in bt_avdtp_parse_capability_codec() 1393 length = net_buf_pull_u8(buf); in bt_avdtp_parse_capability_codec() [all …]
|
D | avrcp.c | 266 net_buf_pull_u8(buf); /* Always 0x07 */ in avrcp_unit_info_handler() 267 rsp.unit_type = FIELD_GET(GENMASK(7, 3), net_buf_pull_u8(buf)); in avrcp_unit_info_handler() 290 net_buf_pull_u8(buf); /* Always 0x07 */ in avrcp_subunit_info_handler() 291 tmp = net_buf_pull_u8(buf); in avrcp_subunit_info_handler()
|
D | sdp.c | 281 data_elem->type = net_buf_pull_u8(buf); in parse_data_elem() 303 data_elem->data_size = net_buf_pull_u8(buf); in parse_data_elem() 604 cont_state_size = net_buf_pull_u8(buf); in sdp_svc_search_req() 632 cont_state = net_buf_pull_u8(buf); in sdp_svc_search_req() 1110 cont_state_size = net_buf_pull_u8(buf); in sdp_svc_att_req() 1126 state.last_att = net_buf_pull_u8(buf) + 1; in sdp_svc_att_req() 1233 cont_state_size = net_buf_pull_u8(buf); in sdp_svc_search_att_req() 1249 state.current_svc = net_buf_pull_u8(buf); in sdp_svc_search_att_req() 1250 state.last_att = net_buf_pull_u8(buf) + 1; in sdp_svc_search_att_req() 1752 seq = net_buf_pull_u8(buf); in sdp_client_get_total() [all …]
|
D | br.c | 427 uint8_t num_reports = net_buf_pull_u8(buf); in bt_hci_inquiry_result_with_rssi()
|
D | rfcomm.c | 1439 rfcomm_dlc_tx_give_credits(dlc, net_buf_pull_u8(buf)); in rfcomm_handle_data()
|
D | l2cap_br.c | 560 l2cap->info_fixed_chan = net_buf_pull_u8(buf); in l2cap_br_info_rsp()
|
/Zephyr-latest/tests/net/ppp/driver/src/ |
D | main.c | 332 (void)net_buf_pull_u8(pkt->buffer); in ppp_verify_fcs() 403 (void)net_buf_pull_u8(pkt->buffer); in ppp_calc_fcs()
|
/Zephyr-latest/drivers/modem/ |
D | wncm14a2a.c | 391 net_buf_pull_u8(*buf); in net_buf_skipcrlf() 514 value[0] = net_buf_pull_u8(*buf); in on_cmd_atcmdecho() 602 value[i] = net_buf_pull_u8(*buf); in on_cmd_atcmdinfo_rssi() 703 value[0] = net_buf_pull_u8(*buf); in on_cmd_sockcreat() 763 value[i++] = net_buf_pull_u8(*buf); in on_cmd_sockread() 789 net_buf_pull_u8(*buf); in on_cmd_sockread() 848 net_buf_pull_u8(*buf); in on_cmd_sockread()
|
D | modem_cmd_handler.c | 41 net_buf_pull_u8(data->rx_buf); in skipcrlf()
|
D | quectel-bg9x.c | 154 net_buf_pull_u8(data->rx_buf); in on_cmd_sockread_common()
|
D | ublox-sara-r4.c | 812 net_buf_pull_u8(data->rx_buf); in on_cmd_sockread_common()
|
D | hl7800.c | 1508 net_buf_pull_u8(*buf); in net_buf_skipcrlf() 1540 uint8_t val = net_buf_pull_u8(*buf); in net_buf_get_u8()
|
/Zephyr-latest/subsys/canbus/isotp/ |
D | isotp.c | 111 uint8_t pci = net_buf_pull_u8(buf); in receive_get_ff_length() 113 len = ((pci & ISOTP_PCI_FF_DL_UPPER_MASK) << 8) | net_buf_pull_u8(buf); in receive_get_ff_length() 125 uint8_t len = net_buf_pull_u8(buf) & ISOTP_PCI_SF_DL_MASK; in receive_get_sf_length() 129 len = net_buf_pull_u8(buf); in receive_get_sf_length()
|
/Zephyr-latest/doc/services/net_buf/ |
D | index.rst | 114 uint8_t net_buf_pull_u8(struct net_buf *buf);
|
/Zephyr-latest/include/zephyr/ |
D | net_buf.h | 2302 static inline uint8_t net_buf_pull_u8(struct net_buf *buf) in net_buf_pull_u8() function 2692 net_buf_pull_u8(buf); in net_buf_skip()
|
/Zephyr-latest/tests/bsim/bluetooth/host/l2cap/reassembly/peer/src/ |
D | peer.c | 172 uint8_t op = net_buf_pull_u8(buf); in handle_att()
|
/Zephyr-latest/tests/bsim/bluetooth/host/misc/disconnect/tester/src/ |
D | main.c | 199 uint8_t op = net_buf_pull_u8(buf); in handle_att()
|
/Zephyr-latest/samples/bluetooth/hci_uart_3wire/src/ |
D | main.c | 577 return net_buf_pull_u8(buf); in h5_get_type()
|
/Zephyr-latest/tests/bsim/bluetooth/host/att/sequential/tester/src/ |
D | main.c | 210 uint8_t op = net_buf_pull_u8(buf); in handle_att()
|
/Zephyr-latest/tests/bsim/bluetooth/host/att/pipeline/tester/src/ |
D | main.c | 235 uint8_t op = net_buf_pull_u8(buf); in handle_att()
|
/Zephyr-latest/subsys/bluetooth/host/classic/shell/ |
D | a2dp.c | 448 sbc_hdr = net_buf_pull_u8(buf); in sink_sbc_streamer_data()
|
/Zephyr-latest/drivers/bluetooth/hci/ |
D | h5.c | 595 return net_buf_pull_u8(buf); in h5_get_type()
|
/Zephyr-latest/subsys/bluetooth/mesh/ |
D | friend.c | 1213 if (!(net_buf_pull_u8(buf) >> 7)) { in update_overwrite() 1381 if (!(net_buf_pull_u8(buf) >> 7)) { in is_segack()
|
/Zephyr-latest/subsys/bluetooth/host/ |
D | scan.c | 770 uint8_t num_reports = net_buf_pull_u8(buf); in bt_hci_le_adv_ext_report() 1638 uint8_t num_reports = net_buf_pull_u8(buf); in bt_hci_le_adv_report()
|