Lines Matching refs:bcc_ptr
3740 unsigned char *bcc_ptr; in CIFSTCon() local
3764 bcc_ptr = &pSMB->Password[0]; in CIFSTCon()
3767 *bcc_ptr = 0; /* password is null byte */ in CIFSTCon()
3768 bcc_ptr++; /* skip password */ in CIFSTCon()
3784 bcc_ptr); in CIFSTCon()
3788 bcc_ptr, nls_codepage); in CIFSTCon()
3796 bcc_ptr += CIFS_AUTH_RESP_SIZE; in CIFSTCon()
3799 *bcc_ptr = 0; /* null byte password */ in CIFSTCon()
3800 bcc_ptr++; in CIFSTCon()
3816 cifs_strtoUTF16((__le16 *) bcc_ptr, tree, in CIFSTCon()
3819 bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */ in CIFSTCon()
3820 bcc_ptr += 2; /* skip trailing null */ in CIFSTCon()
3822 strcpy(bcc_ptr, tree); in CIFSTCon()
3823 bcc_ptr += strlen(tree) + 1; in CIFSTCon()
3825 strcpy(bcc_ptr, "?????"); in CIFSTCon()
3826 bcc_ptr += strlen("?????"); in CIFSTCon()
3827 bcc_ptr += 1; in CIFSTCon()
3828 count = bcc_ptr - &pSMB->Password[0]; in CIFSTCon()
3843 bcc_ptr = pByteArea(smb_buffer_response); in CIFSTCon()
3845 length = strnlen(bcc_ptr, bytes_left - 2); in CIFSTCon()
3854 if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') && in CIFSTCon()
3855 (bcc_ptr[2] == 'C')) { in CIFSTCon()
3860 if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) { in CIFSTCon()
3865 bcc_ptr += length + 1; in CIFSTCon()
3871 tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr, in CIFSTCon()