Home
last modified time | relevance | path

Searched refs:will_write (Results 1 – 3 of 3) sorted by relevance

/hal_espressif-3.6.0/components/esp_system/port/soc/esp32s3/
Dusb_console.c321 ssize_t will_write = MIN(size, tx_buf_available); in esp_usb_console_write_buf() local
322 memcpy(s_usb_tx_buf + s_usb_tx_buf_pos, buf, will_write); in esp_usb_console_write_buf()
323 s_usb_tx_buf_pos += will_write; in esp_usb_console_write_buf()
331 ret = esp_usb_console_flush_internal(will_write); in esp_usb_console_write_buf()
334 ret = will_write; in esp_usb_console_write_buf()
/hal_espressif-3.6.0/components/esp_system/port/soc/esp32s2/
Dusb_console.c321 ssize_t will_write = MIN(size, tx_buf_available); in esp_usb_console_write_buf() local
322 memcpy(s_usb_tx_buf + s_usb_tx_buf_pos, buf, will_write); in esp_usb_console_write_buf()
323 s_usb_tx_buf_pos += will_write; in esp_usb_console_write_buf()
331 ret = esp_usb_console_flush_internal(will_write); in esp_usb_console_write_buf()
334 ret = will_write; in esp_usb_console_write_buf()
/hal_espressif-3.6.0/components/esp_eth/src/
Desp_eth_mac_openeth.c247 uint32_t will_write = MIN(bytes_remaining, DMA_BUF_SIZE); in emac_opencores_transmit() local
248 memcpy(emac->tx_buf[emac->cur_tx_desc], buf, will_write); in emac_opencores_transmit()
252 desc_val.len = will_write; in emac_opencores_transmit()
255 …, "%s: desc %d (%p) len=%d wr=%d", __func__, emac->cur_tx_desc, desc_ptr, will_write, desc_val.wr); in emac_opencores_transmit()
257 bytes_remaining -= will_write; in emac_opencores_transmit()
258 buf += will_write; in emac_opencores_transmit()