Searched defs:bcc (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_create.c154 uint16_t bcc; local
157 bcc = 1; /* null terminator */
158 bcc += snprintf(name, SMB_CREATE_NAMEBUF_SZ, "tt%05d.tmp", tmp_id);
H A Dsmb_dispatch.c716 * large reads/write and bcc is only 16-bits.
894 smbsr_encode_result(struct smb_request *sr, int wct, int bcc, argument
907 sr->smb_bcc = (uint16_t)bcc;
909 if (smbsr_check_result(sr, wct, bcc) != 0)
916 smbsr_check_result(struct smb_request *sr, int wct, int bcc) argument
947 if (bcc == VAR_BCC) {
951 bcc = (total_bytes - offset) - 2;
953 bcc, bcc >> 8);
956 if ((temp != (bcc
[all...]

Completed in 46 milliseconds