Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/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()
[all …]
/OK3568_Linux_fs/u-boot/common/
H A Dattestation_key.c137 int32_t bytes_remaining = 0; in copy_cert_chain_from_buf() local
152 bytes_remaining = cert_chain_size; in copy_cert_chain_from_buf()
160 bytes_remaining -= (sizeof(uint32_t) + in copy_cert_chain_from_buf()
163 if (bytes_remaining <= 0) { in copy_cert_chain_from_buf()
164 retval = (bytes_remaining == 0); in copy_cert_chain_from_buf()
/OK3568_Linux_fs/kernel/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()
/OK3568_Linux_fs/kernel/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()
/OK3568_Linux_fs/kernel/net/ethtool/
H A Dioctl.c1513 u32 bytes_remaining; in ethtool_get_any_eeprom() local
1532 bytes_remaining = eeprom.len; in ethtool_get_any_eeprom()
1533 while (bytes_remaining > 0) { in ethtool_get_any_eeprom()
1534 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); in ethtool_get_any_eeprom()
1545 bytes_remaining -= eeprom.len; in ethtool_get_any_eeprom()
1574 u32 bytes_remaining; in ethtool_set_eeprom() local
1597 bytes_remaining = eeprom.len; in ethtool_set_eeprom()
1598 while (bytes_remaining > 0) { in ethtool_set_eeprom()
1599 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); in ethtool_set_eeprom()
1610 bytes_remaining -= eeprom.len; in ethtool_set_eeprom()
/OK3568_Linux_fs/kernel/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()
/OK3568_Linux_fs/kernel/drivers/visorbus/
H A Dvisorchipset.c44 unsigned long bytes_remaining; member
588 ctx->bytes_remaining = phdr->name_length; in parser_name_get()