Home
last modified time | relevance | path

Searched refs:bytes_remaining (Results 1 - 13 of 13) sorted by relevance

/kernel/linux/linux-5.10/fs/cifs/
H A Dsess.c979 __u16 bytes_remaining; in sess_auth_lanman() local
1048 bytes_remaining = get_bcc(smb_buf); in sess_auth_lanman()
1052 if (bytes_remaining == 0) { in sess_auth_lanman()
1058 --bytes_remaining; in sess_auth_lanman()
1060 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses, in sess_auth_lanman()
1063 decode_ascii_ssetup(&bcc_ptr, bytes_remaining, ses, in sess_auth_lanman()
1085 __u16 bytes_remaining; in sess_auth_ntlm() local
1158 bytes_remaining = get_bcc(smb_buf); in sess_auth_ntlm()
1162 if (bytes_remaining == 0) { in sess_auth_ntlm()
1168 --bytes_remaining; in sess_auth_ntlm()
1195 __u16 bytes_remaining; sess_auth_ntlmv2() local
1304 __u16 bytes_remaining; sess_auth_kerberos() local
1482 __u16 bytes_remaining; sess_auth_rawntlmssp_negotiate() local
1578 __u16 bytes_remaining; sess_auth_rawntlmssp_authenticate() local
[all...]
/kernel/linux/linux-6.6/fs/smb/client/
H A Dsess.c1464 __u16 bytes_remaining; in sess_auth_ntlmv2() local
1535 bytes_remaining = get_bcc(smb_buf); in sess_auth_ntlmv2()
1539 if (bytes_remaining == 0) { in sess_auth_ntlmv2()
1545 --bytes_remaining; in sess_auth_ntlmv2()
1547 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses, in sess_auth_ntlmv2()
1550 decode_ascii_ssetup(&bcc_ptr, bytes_remaining, ses, in sess_auth_ntlmv2()
1574 __u16 bytes_remaining; in sess_auth_kerberos() local
1661 bytes_remaining = get_bcc(smb_buf); in sess_auth_kerberos()
1665 if (blob_len > bytes_remaining) { in sess_auth_kerberos()
1672 bytes_remaining in sess_auth_kerberos()
1754 __u16 bytes_remaining; sess_auth_rawntlmssp_negotiate() local
1860 __u16 bytes_remaining; sess_auth_rawntlmssp_authenticate() local
[all...]
/kernel/linux/linux-5.10/drivers/char/xilinx_hwicap/
H A 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()
/kernel/linux/linux-6.6/drivers/char/xilinx_hwicap/
H A Dxilinx_hwicap.c364 u32 bytes_remaining; in hwicap_read() local
411 bytes_remaining = bytes_to_read & 3; in hwicap_read()
432 bytes_remaining); in hwicap_read()
433 drvdata->read_buffer_in_use = bytes_remaining; in hwicap_read()
/kernel/linux/linux-5.10/drivers/net/wireless/marvell/libertas/
H A Dif_spi.c462 int bytes_remaining; in if_spi_prog_helper_firmware() local
470 bytes_remaining = firmware->size; in if_spi_prog_helper_firmware()
474 while (bytes_remaining > 0) { in if_spi_prog_helper_firmware()
496 min(bytes_remaining, HELPER_FW_LOAD_CHUNK_SZ)); in if_spi_prog_helper_firmware()
511 bytes_remaining -= HELPER_FW_LOAD_CHUNK_SZ; in if_spi_prog_helper_firmware()
/kernel/linux/linux-6.6/drivers/net/wireless/marvell/libertas/
H A Dif_spi.c459 int bytes_remaining; in if_spi_prog_helper_firmware() local
467 bytes_remaining = firmware->size; in if_spi_prog_helper_firmware()
471 while (bytes_remaining > 0) { in if_spi_prog_helper_firmware()
493 min(bytes_remaining, HELPER_FW_LOAD_CHUNK_SZ)); in if_spi_prog_helper_firmware()
508 bytes_remaining -= HELPER_FW_LOAD_CHUNK_SZ; in if_spi_prog_helper_firmware()
/kernel/linux/linux-6.6/drivers/spi/
H A Dspi-rzv2m-csi.c199 unsigned int bytes_remaining = csi->buffer_len - bytes_transferred; in rzv2m_csi_calc_current_transfer() local
208 to_transfer = min(CSI_FIFO_HALF_SIZE, bytes_remaining); in rzv2m_csi_calc_current_transfer()
210 to_transfer = min(CSI_FIFO_SIZE_BYTES, bytes_remaining); in rzv2m_csi_calc_current_transfer()
/kernel/linux/linux-5.10/net/ethtool/
H A Dioctl.c1516 u32 bytes_remaining; in ethtool_get_any_eeprom() local
1535 bytes_remaining = eeprom.len; in ethtool_get_any_eeprom()
1536 while (bytes_remaining > 0) { in ethtool_get_any_eeprom()
1537 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); in ethtool_get_any_eeprom()
1548 bytes_remaining -= eeprom.len; in ethtool_get_any_eeprom()
1577 u32 bytes_remaining; in ethtool_set_eeprom() local
1600 bytes_remaining = eeprom.len; in ethtool_set_eeprom()
1601 while (bytes_remaining > 0) { in ethtool_set_eeprom()
1602 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); in ethtool_set_eeprom()
1613 bytes_remaining in ethtool_set_eeprom()
[all...]
/kernel/linux/linux-6.6/net/ethtool/
H A Dioctl.c1537 u32 bytes_remaining; in ethtool_get_any_eeprom() local
1556 bytes_remaining = eeprom.len; in ethtool_get_any_eeprom()
1557 while (bytes_remaining > 0) { in ethtool_get_any_eeprom()
1558 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); in ethtool_get_any_eeprom()
1573 bytes_remaining -= eeprom.len; in ethtool_get_any_eeprom()
1602 u32 bytes_remaining; in ethtool_set_eeprom() local
1625 bytes_remaining = eeprom.len; in ethtool_set_eeprom()
1626 while (bytes_remaining > 0) { in ethtool_set_eeprom()
1627 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); in ethtool_set_eeprom()
1638 bytes_remaining in ethtool_set_eeprom()
[all...]
/kernel/linux/linux-5.10/drivers/i2c/busses/
H A 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()
/kernel/linux/linux-6.6/drivers/i2c/busses/
H A 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()
/kernel/linux/linux-6.6/fs/orangefs/
H A Dinode.c252 loff_t bytes_remaining = inode->i_size - readahead_pos(rac); in orangefs_readahead() local
253 loff_t pages_remaining = bytes_remaining / PAGE_SIZE; in orangefs_readahead()
258 new_len = bytes_remaining; in orangefs_readahead()
/kernel/linux/linux-5.10/drivers/visorbus/
H A Dvisorchipset.c44 unsigned long bytes_remaining; member
588 ctx->bytes_remaining = phdr->name_length; in parser_name_get()

Completed in 21 milliseconds