Home
last modified time | relevance | path

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

/hal_espressif-3.7.0/components/esp_netif/lwip/netif/
Desp_pbuf_ref.c33 static void esp_pbuf_free(struct pbuf *pbuf) in esp_pbuf_free() argument
35 esp_custom_pbuf_t* esp_pbuf = (esp_custom_pbuf_t*)pbuf; in esp_pbuf_free()
37 mem_free(pbuf); in esp_pbuf_free()
48 struct pbuf* esp_pbuf_allocate(esp_netif_t *esp_netif, void *buffer, size_t len, void *l2_buff) in esp_pbuf_allocate()
50 struct pbuf *p; in esp_pbuf_allocate()
Dethernetif.c73 static err_t ethernet_low_level_output(struct netif *netif, struct pbuf *p) in ethernet_low_level_output()
75 struct pbuf *q = p; in ethernet_low_level_output()
123 struct pbuf *p; in ethernetif_input()
Dwlanif.c79 static err_t low_level_output(struct netif *netif, struct pbuf *p) in low_level_output()
86 struct pbuf *q = p; in low_level_output()
133 struct pbuf *p; in wlanif_input()
/hal_espressif-3.7.0/components/hal/esp32c2/
Drtc_cntl_hal.c47 rtc_cntl_link_buf_conf_t *pbuf = (rtc_cntl_link_buf_conf_t *)plink->buf; in rtc_cntl_hal_enable_cpu_retention() local
48 pbuf->cfg[0] = 0; in rtc_cntl_hal_enable_cpu_retention()
49 pbuf->cfg[1] = 0; in rtc_cntl_hal_enable_cpu_retention()
50 pbuf->cfg[2] = 0; in rtc_cntl_hal_enable_cpu_retention()
51 pbuf->cfg[3] = (uint32_t)-1; in rtc_cntl_hal_enable_cpu_retention()
/hal_espressif-3.7.0/components/hal/esp32c3/
Drtc_cntl_hal.c60 rtc_cntl_link_buf_conf_t *pbuf = (rtc_cntl_link_buf_conf_t *)plink->buf; in rtc_cntl_hal_enable_cpu_retention() local
61 pbuf->cfg[0] = 0; in rtc_cntl_hal_enable_cpu_retention()
62 pbuf->cfg[1] = 0; in rtc_cntl_hal_enable_cpu_retention()
63 pbuf->cfg[2] = 0; in rtc_cntl_hal_enable_cpu_retention()
64 pbuf->cfg[3] = (uint32_t)-1; in rtc_cntl_hal_enable_cpu_retention()
/hal_espressif-3.7.0/components/hal/esp32s3/
Drtc_cntl_hal.c57 rtc_cntl_link_buf_conf_t *pbuf = (rtc_cntl_link_buf_conf_t *)plink->buf; in rtc_cntl_hal_enable_cpu_retention() local
58 pbuf->cfg[0] = 0; in rtc_cntl_hal_enable_cpu_retention()
59 pbuf->cfg[1] = 0; in rtc_cntl_hal_enable_cpu_retention()
60 pbuf->cfg[2] = 0; in rtc_cntl_hal_enable_cpu_retention()
61 pbuf->cfg[3] = 0xfffe0000; in rtc_cntl_hal_enable_cpu_retention()
/hal_espressif-3.7.0/components/esp_netif/include/lwip/
Desp_pbuf_ref.h25 struct pbuf* esp_pbuf_allocate(esp_netif_t *esp_netif, void *buffer, size_t len, void *l2_buff);
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/hid/
Dhidh_api.c505 UINT8 param, UINT16 data, UINT8 report_id, BT_HDR *pbuf ) in HID_HostWriteDev() argument
525 if (pbuf) { in HID_HostWriteDev()
526 osi_free ((void *)pbuf); in HID_HostWriteDev()
529 status = hidh_conn_snd_data( dev_handle, t_type, param, data, report_id, pbuf ) ; in HID_HostWriteDev()
/hal_espressif-3.7.0/components/esp_netif/lwip/
Desp_netif_lwip_internal.h89 esp_err_t (*driver_transmit_wrap)(void *h, void *buffer, size_t len, void *pbuf);
Desp_netif_lwip.c1190 void esp_netif_netstack_buf_ref(void *pbuf) in esp_netif_netstack_buf_ref() argument
1192 pbuf_ref(pbuf); in esp_netif_netstack_buf_ref()
1195 void esp_netif_netstack_buf_free(void *pbuf) in esp_netif_netstack_buf_free() argument
1197 pbuf_free(pbuf); in esp_netif_netstack_buf_free()
1214 esp_err_t esp_netif_transmit_wrap(esp_netif_t *esp_netif, void *data, size_t len, void *pbuf) in esp_netif_transmit_wrap() argument
1216 return (esp_netif->driver_transmit_wrap)(esp_netif->driver_handle, data, len, pbuf); in esp_netif_transmit_wrap()
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/include/stack/
Dhidh_api.h187 UINT8 report_id, BT_HDR *pbuf);
/hal_espressif-3.7.0/components/wpa_supplicant/src/eap_peer/
Deap_i.h293 struct pbuf *outbuf;
/hal_espressif-3.7.0/components/driver/uart/
Duart.c749 static uint32_t UART_ISR_ATTR uart_enable_tx_write_fifo(uart_port_t uart_num, const uint8_t *pbuf, … in uart_enable_tx_write_fifo() argument
760 uart_hal_write_txfifo(&(uart_context[uart_num].hal), pbuf, len, &sent_len); in uart_enable_tx_write_fifo()