Lines Matching refs:bcc_ptr
3916 unsigned char *bcc_ptr; in CIFSTCon() local
3940 bcc_ptr = &pSMB->Password[0]; in CIFSTCon()
3943 *bcc_ptr = 0; /* password is null byte */ in CIFSTCon()
3944 bcc_ptr++; /* skip password */ in CIFSTCon()
3959 cifs_strtoUTF16((__le16 *) bcc_ptr, tree, in CIFSTCon()
3962 bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */ in CIFSTCon()
3963 bcc_ptr += 2; /* skip trailing null */ in CIFSTCon()
3965 strcpy(bcc_ptr, tree); in CIFSTCon()
3966 bcc_ptr += strlen(tree) + 1; in CIFSTCon()
3968 strcpy(bcc_ptr, "?????"); in CIFSTCon()
3969 bcc_ptr += strlen("?????"); in CIFSTCon()
3970 bcc_ptr += 1; in CIFSTCon()
3971 count = bcc_ptr - &pSMB->Password[0]; in CIFSTCon()
3983 bcc_ptr = pByteArea(smb_buffer_response); in CIFSTCon()
3985 length = strnlen(bcc_ptr, bytes_left - 2); in CIFSTCon()
3994 if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') && in CIFSTCon()
3995 (bcc_ptr[2] == 'C')) { in CIFSTCon()
4001 if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) { in CIFSTCon()
4006 bcc_ptr += length + 1; in CIFSTCon()
4012 tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr, in CIFSTCon()