Home
last modified time | relevance | path

Searched refs:bytes_remaining (Results 1 – 6 of 6) sorted by relevance

/Linux-v5.4/fs/cifs/
Dsess.c701 __u16 bytes_remaining; in sess_auth_lanman() local
770 bytes_remaining = get_bcc(smb_buf); in sess_auth_lanman()
774 if (bytes_remaining == 0) { in sess_auth_lanman()
780 --bytes_remaining; in sess_auth_lanman()
782 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses, in sess_auth_lanman()
785 decode_ascii_ssetup(&bcc_ptr, bytes_remaining, ses, in sess_auth_lanman()
807 __u16 bytes_remaining; in sess_auth_ntlm() local
880 bytes_remaining = get_bcc(smb_buf); in sess_auth_ntlm()
884 if (bytes_remaining == 0) { in sess_auth_ntlm()
890 --bytes_remaining; in sess_auth_ntlm()
[all …]
/Linux-v5.4/drivers/char/xilinx_hwicap/
Dxilinx_hwicap.c362 u32 bytes_remaining; in hwicap_read() local
409 bytes_remaining = bytes_to_read & 3; in hwicap_read()
430 bytes_remaining); in hwicap_read()
431 drvdata->read_buffer_in_use = bytes_remaining; in hwicap_read()
/Linux-v5.4/drivers/net/wireless/marvell/libertas/
Dif_spi.c461 int bytes_remaining; in if_spi_prog_helper_firmware() local
469 bytes_remaining = firmware->size; in if_spi_prog_helper_firmware()
473 while (bytes_remaining > 0) { in if_spi_prog_helper_firmware()
495 min(bytes_remaining, HELPER_FW_LOAD_CHUNK_SZ)); in if_spi_prog_helper_firmware()
510 bytes_remaining -= HELPER_FW_LOAD_CHUNK_SZ; in if_spi_prog_helper_firmware()
/Linux-v5.4/net/core/
Dethtool.c1496 u32 bytes_remaining; in ethtool_get_any_eeprom() local
1515 bytes_remaining = eeprom.len; in ethtool_get_any_eeprom()
1516 while (bytes_remaining > 0) { in ethtool_get_any_eeprom()
1517 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); in ethtool_get_any_eeprom()
1528 bytes_remaining -= eeprom.len; in ethtool_get_any_eeprom()
1557 u32 bytes_remaining; in ethtool_set_eeprom() local
1580 bytes_remaining = eeprom.len; in ethtool_set_eeprom()
1581 while (bytes_remaining > 0) { in ethtool_set_eeprom()
1582 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); in ethtool_set_eeprom()
1593 bytes_remaining -= eeprom.len; in ethtool_set_eeprom()
/Linux-v5.4/drivers/i2c/busses/
Di2c-fsi.c273 int bytes_remaining = msg->len - port->xfrd; in fsi_i2c_write_fifo() local
275 bytes_to_write = min(bytes_to_write, bytes_remaining); in fsi_i2c_write_fifo()
/Linux-v5.4/drivers/visorbus/
Dvisorchipset.c44 unsigned long bytes_remaining; member
588 ctx->bytes_remaining = phdr->name_length; in parser_name_get()