Lines Matching refs:bcc_ptr
3665 unsigned char *bcc_ptr; in CIFSTCon() local
3689 bcc_ptr = &pSMB->Password[0]; in CIFSTCon()
3692 *bcc_ptr = 0; /* password is null byte */ in CIFSTCon()
3693 bcc_ptr++; /* skip password */ in CIFSTCon()
3709 cifs_strtoUTF16((__le16 *) bcc_ptr, tree, in CIFSTCon()
3712 bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */ in CIFSTCon()
3713 bcc_ptr += 2; /* skip trailing null */ in CIFSTCon()
3715 strcpy(bcc_ptr, tree); in CIFSTCon()
3716 bcc_ptr += strlen(tree) + 1; in CIFSTCon()
3718 strcpy(bcc_ptr, "?????"); in CIFSTCon()
3719 bcc_ptr += strlen("?????"); in CIFSTCon()
3720 bcc_ptr += 1; in CIFSTCon()
3721 count = bcc_ptr - &pSMB->Password[0]; in CIFSTCon()
3735 bcc_ptr = pByteArea(smb_buffer_response); in CIFSTCon()
3737 length = strnlen(bcc_ptr, bytes_left - 2); in CIFSTCon()
3746 if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') && in CIFSTCon()
3747 (bcc_ptr[2] == 'C')) { in CIFSTCon()
3753 if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) { in CIFSTCon()
3758 bcc_ptr += length + 1; in CIFSTCon()
3764 tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr, in CIFSTCon()