Searched refs:rx_len (Results 1 – 11 of 11) sorted by relevance
/hal_espressif-3.5.0/components/esp_eth/src/ |
D | esp_eth_mac_w5500.c | 558 uint16_t rx_len = 0; in emac_w5500_receive() local 568 …ESP_GOTO_ON_ERROR(w5500_read_buffer(emac, &rx_len, sizeof(rx_len), offset), err, TAG, "read frame … in emac_w5500_receive() 569 rx_len = __builtin_bswap16(rx_len) - 2; // data size includes 2 bytes of header in emac_w5500_receive() 572 …_ON_ERROR(w5500_read_buffer(emac, buf, rx_len, offset), err, TAG, "read payload failed, len=%d, of… in emac_w5500_receive() 573 offset += rx_len; in emac_w5500_receive() 580 remain_bytes -= rx_len + 2; in emac_w5500_receive() 584 *length = rx_len; in emac_w5500_receive()
|
D | esp_eth_mac_dm9051.c | 658 uint16_t rx_len = 0; in emac_dm9051_receive() local 674 rx_len = header.length_low + (header.length_high << 8); in emac_dm9051_receive() 676 if (*length < rx_len - 4) { in emac_dm9051_receive() 677 ESP_LOGE(TAG, "buffer size too small, needs %d", rx_len - 4); in emac_dm9051_receive() 679 *length = rx_len - 4; in emac_dm9051_receive() 684 ESP_GOTO_ON_ERROR(dm9051_memory_read(emac, buf, rx_len), err, TAG, "read rx data failed"); in emac_dm9051_receive() 686 *length = rx_len - 4; // substract the CRC length (4Bytes) in emac_dm9051_receive()
|
/hal_espressif-3.5.0/components/esp_rom/include/esp32s2/rom/ |
D | opi_flash.h | 131 void esp_rom_spi_cmd_start(int spi_num, uint8_t* rx_buf, uint16_t rx_len, uint8_t cs_en_mask, bool …
|
/hal_espressif-3.5.0/components/esp_rom/include/esp32s3/rom/ |
D | opi_flash.h | 171 void esp_rom_spi_cmd_start(int spi_num, uint8_t* rx_buf, uint16_t rx_len, uint8_t cs_en_mask, bool …
|
/hal_espressif-3.5.0/examples/ethernet/enc28j60/components/eth_enc28j60/ |
D | esp_eth_mac_enc28j60.c | 957 uint16_t rx_len = 0; in emac_enc28j60_receive() local 966 rx_len = header.length_low + (header.length_high << 8); in emac_enc28j60_receive() 970 …t(emac, enc28j60_rx_packet_start(emac->next_packet_ptr, ENC28J60_RSV_SIZE), buf, rx_len) == ESP_OK, in emac_enc28j60_receive() 986 *length = rx_len - 4; // substract the CRC length in emac_enc28j60_receive()
|
/hal_espressif-3.5.0/components/bt/host/bluedroid/btc/profile/std/spp/ |
D | btc_spp.c | 1283 size_t rx_len = fixed_queue_length(slot->rx.queue); in bta_co_rfc_data_incoming() local 1285 if (rx_len == 0) { in bta_co_rfc_data_incoming() 1286 BTC_TRACE_DEBUG("%s data post! %d, %d", __func__, slot->rfc_handle, rx_len); in bta_co_rfc_data_incoming()
|
/hal_espressif-3.5.0/components/bt/host/bluedroid/stack/include/stack/ |
D | btm_api.h | 140 UINT16 rx_len; member 1883 UINT8 rx_len; member
|
/hal_espressif-3.5.0/components/bt/host/bluedroid/api/include/api/ |
D | esp_gap_ble_api.h | 468 uint16_t rx_len; /*!< pkt rx data length value */ member
|
/hal_espressif-3.5.0/components/bt/host/bluedroid/btc/profile/std/gap/ |
D | btc_gap_ble.c | 691 param.pkt_data_lenth_cmpl.params.rx_len = data_len_params->rx_len; in btc_set_pkt_length_callback()
|
/hal_espressif-3.5.0/components/bt/host/bluedroid/stack/l2cap/ |
D | l2c_ble.c | 1221 data_length_params.rx_len = rx_data_len; in l2cble_process_data_length_change_event()
|
/hal_espressif-3.5.0/components/bt/host/bluedroid/bta/dm/ |
D | bta_dm_act.c | 5414 p_acl_cb->data_length_params.rx_len = length; in bta_dm_ble_set_data_length()
|