Lines Matching refs:bcc_ptr
4821 unsigned char *bcc_ptr; in CIFSTCon() local
4845 bcc_ptr = &pSMB->Password[0]; in CIFSTCon()
4848 *bcc_ptr = 0; /* password is null byte */ in CIFSTCon()
4849 bcc_ptr++; /* skip password */ in CIFSTCon()
4865 bcc_ptr); in CIFSTCon()
4869 bcc_ptr, nls_codepage); in CIFSTCon()
4877 bcc_ptr += CIFS_AUTH_RESP_SIZE; in CIFSTCon()
4880 *bcc_ptr = 0; /* null byte password */ in CIFSTCon()
4881 bcc_ptr++; in CIFSTCon()
4897 cifs_strtoUTF16((__le16 *) bcc_ptr, tree, in CIFSTCon()
4900 bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */ in CIFSTCon()
4901 bcc_ptr += 2; /* skip trailing null */ in CIFSTCon()
4903 strcpy(bcc_ptr, tree); in CIFSTCon()
4904 bcc_ptr += strlen(tree) + 1; in CIFSTCon()
4906 strcpy(bcc_ptr, "?????"); in CIFSTCon()
4907 bcc_ptr += strlen("?????"); in CIFSTCon()
4908 bcc_ptr += 1; in CIFSTCon()
4909 count = bcc_ptr - &pSMB->Password[0]; in CIFSTCon()
4923 bcc_ptr = pByteArea(smb_buffer_response); in CIFSTCon()
4925 length = strnlen(bcc_ptr, bytes_left - 2); in CIFSTCon()
4934 if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') && in CIFSTCon()
4935 (bcc_ptr[2] == 'C')) { in CIFSTCon()
4941 if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) { in CIFSTCon()
4946 bcc_ptr += length + 1; in CIFSTCon()
4952 tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr, in CIFSTCon()