Lines Matching refs:bcc_ptr
4839 unsigned char *bcc_ptr; in CIFSTCon() local
4863 bcc_ptr = &pSMB->Password[0]; in CIFSTCon()
4866 *bcc_ptr = 0; /* password is null byte */ in CIFSTCon()
4867 bcc_ptr++; /* skip password */ in CIFSTCon()
4883 bcc_ptr); in CIFSTCon()
4887 bcc_ptr, nls_codepage); in CIFSTCon()
4895 bcc_ptr += CIFS_AUTH_RESP_SIZE; in CIFSTCon()
4898 *bcc_ptr = 0; /* null byte password */ in CIFSTCon()
4899 bcc_ptr++; in CIFSTCon()
4915 cifs_strtoUTF16((__le16 *) bcc_ptr, tree, in CIFSTCon()
4918 bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */ in CIFSTCon()
4919 bcc_ptr += 2; /* skip trailing null */ in CIFSTCon()
4921 strcpy(bcc_ptr, tree); in CIFSTCon()
4922 bcc_ptr += strlen(tree) + 1; in CIFSTCon()
4924 strcpy(bcc_ptr, "?????"); in CIFSTCon()
4925 bcc_ptr += strlen("?????"); in CIFSTCon()
4926 bcc_ptr += 1; in CIFSTCon()
4927 count = bcc_ptr - &pSMB->Password[0]; in CIFSTCon()
4941 bcc_ptr = pByteArea(smb_buffer_response); in CIFSTCon()
4943 length = strnlen(bcc_ptr, bytes_left - 2); in CIFSTCon()
4952 if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') && in CIFSTCon()
4953 (bcc_ptr[2] == 'C')) { in CIFSTCon()
4959 if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) { in CIFSTCon()
4964 bcc_ptr += length + 1; in CIFSTCon()
4970 tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr, in CIFSTCon()