Lines Matching refs:bcc_ptr
3648 unsigned char *bcc_ptr; in CIFSTCon() local
3672 bcc_ptr = &pSMB->Password[0]; in CIFSTCon()
3675 *bcc_ptr = 0; /* password is null byte */ in CIFSTCon()
3676 bcc_ptr++; /* skip password */ in CIFSTCon()
3692 bcc_ptr); in CIFSTCon()
3696 bcc_ptr, nls_codepage); in CIFSTCon()
3704 bcc_ptr += CIFS_AUTH_RESP_SIZE; in CIFSTCon()
3707 *bcc_ptr = 0; /* null byte password */ in CIFSTCon()
3708 bcc_ptr++; in CIFSTCon()
3724 cifs_strtoUTF16((__le16 *) bcc_ptr, tree, in CIFSTCon()
3727 bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */ in CIFSTCon()
3728 bcc_ptr += 2; /* skip trailing null */ in CIFSTCon()
3730 strcpy(bcc_ptr, tree); in CIFSTCon()
3731 bcc_ptr += strlen(tree) + 1; in CIFSTCon()
3733 strcpy(bcc_ptr, "?????"); in CIFSTCon()
3734 bcc_ptr += strlen("?????"); in CIFSTCon()
3735 bcc_ptr += 1; in CIFSTCon()
3736 count = bcc_ptr - &pSMB->Password[0]; in CIFSTCon()
3751 bcc_ptr = pByteArea(smb_buffer_response); in CIFSTCon()
3753 length = strnlen(bcc_ptr, bytes_left - 2); in CIFSTCon()
3762 if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') && in CIFSTCon()
3763 (bcc_ptr[2] == 'C')) { in CIFSTCon()
3768 if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) { in CIFSTCon()
3773 bcc_ptr += length + 1; in CIFSTCon()
3779 tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr, in CIFSTCon()