Lines Matching refs:bcc_ptr
4188 unsigned char *bcc_ptr; in CIFSTCon() local
4212 bcc_ptr = &pSMB->Password[0]; in CIFSTCon()
4215 *bcc_ptr = 0; /* password is null byte */ in CIFSTCon()
4216 bcc_ptr++; /* skip password */ in CIFSTCon()
4232 bcc_ptr); in CIFSTCon()
4236 bcc_ptr, nls_codepage); in CIFSTCon()
4244 bcc_ptr += CIFS_AUTH_RESP_SIZE; in CIFSTCon()
4247 *bcc_ptr = 0; /* null byte password */ in CIFSTCon()
4248 bcc_ptr++; in CIFSTCon()
4264 cifs_strtoUTF16((__le16 *) bcc_ptr, tree, in CIFSTCon()
4267 bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */ in CIFSTCon()
4268 bcc_ptr += 2; /* skip trailing null */ in CIFSTCon()
4270 strcpy(bcc_ptr, tree); in CIFSTCon()
4271 bcc_ptr += strlen(tree) + 1; in CIFSTCon()
4273 strcpy(bcc_ptr, "?????"); in CIFSTCon()
4274 bcc_ptr += strlen("?????"); in CIFSTCon()
4275 bcc_ptr += 1; in CIFSTCon()
4276 count = bcc_ptr - &pSMB->Password[0]; in CIFSTCon()
4291 bcc_ptr = pByteArea(smb_buffer_response); in CIFSTCon()
4293 length = strnlen(bcc_ptr, bytes_left - 2); in CIFSTCon()
4302 if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') && in CIFSTCon()
4303 (bcc_ptr[2] == 'C')) { in CIFSTCon()
4309 if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) { in CIFSTCon()
4314 bcc_ptr += length + 1; in CIFSTCon()
4320 tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr, in CIFSTCon()