Searched refs:frame_length (Results 1 – 6 of 6) sorted by relevance
/Zephyr-latest/drivers/wifi/nrf_wifi/src/ |
D | wifi_mgmt_scan.c | 393 int frame_length = 0; in nrf_wifi_rx_bcn_prb_resp_frm() local 423 frame_length = nrf_wifi_osal_nbuf_data_size(nwb); in nrf_wifi_rx_bcn_prb_resp_frm() 425 if (frame_length > CONFIG_WIFI_MGMT_RAW_SCAN_RESULT_LENGTH) { in nrf_wifi_rx_bcn_prb_resp_frm() 433 frame_length); in nrf_wifi_rx_bcn_prb_resp_frm() 438 bcn_prb_resp_info.frame_length = frame_length; in nrf_wifi_rx_bcn_prb_resp_frm()
|
/Zephyr-latest/drivers/ethernet/ |
D | eth_cyclonev.c | 644 uint32_t index, frame_length, rx_search, wrap, data_remaining, last_desc_index, buf_size; in eth_cyclonev_receive() local 666 frame_length = data_remaining = (ETH_DMARXDESC_FL & rx_desc->status) >> 16; in eth_cyclonev_receive() 679 LOG_DBG("Frame length = %d, Last descriptor = %d", frame_length, last_desc_index); in eth_cyclonev_receive() 683 pkt = net_pkt_rx_alloc_with_buffer(p->iface, frame_length, AF_UNSPEC, 0, K_NO_WAIT); in eth_cyclonev_receive() 739 LOG_DBG("Received packet %p, len %d", pkt, frame_length); in eth_cyclonev_receive()
|
D | eth_nxp_enet.c | 344 uint32_t frame_length = 0U; in eth_nxp_enet_rx() local 351 (uint32_t *)&frame_length, RING_ID); in eth_nxp_enet_rx() 364 if (frame_length > NET_ETH_MAX_FRAME_SIZE) { in eth_nxp_enet_rx() 365 LOG_ERR("Frame too large (%d)", frame_length); in eth_nxp_enet_rx() 370 pkt = net_pkt_rx_alloc_with_buffer(data->iface, frame_length, in eth_nxp_enet_rx() 378 data->rx_frame_buf, frame_length, RING_ID, &ts); in eth_nxp_enet_rx() 386 if (net_pkt_write(pkt, data->rx_frame_buf, frame_length)) { in eth_nxp_enet_rx()
|
/Zephyr-latest/subsys/net/l2/wifi/ |
D | wifi_mgmt.c | 1366 if (raw_scan_result->frame_length > CONFIG_WIFI_MGMT_RAW_SCAN_RESULT_LENGTH) { in wifi_mgmt_raise_raw_scan_result_event() 1369 raw_scan_result->frame_length, in wifi_mgmt_raise_raw_scan_result_event()
|
D | wifi_shell.c | 284 sizeof(mac_string_buf)), raw->frame_length); in handle_wifi_raw_scan_result()
|
/Zephyr-latest/include/zephyr/net/ |
D | wifi_mgmt.h | 954 int frame_length; member
|