Lines Matching refs:bcc_ptr
3621 unsigned char *bcc_ptr; in CIFSTCon() local
3645 bcc_ptr = &pSMB->Password[0]; in CIFSTCon()
3648 *bcc_ptr = 0; /* password is null byte */ in CIFSTCon()
3649 bcc_ptr++; /* skip password */ in CIFSTCon()
3664 cifs_strtoUTF16((__le16 *) bcc_ptr, tree, in CIFSTCon()
3667 bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */ in CIFSTCon()
3668 bcc_ptr += 2; /* skip trailing null */ in CIFSTCon()
3670 strcpy(bcc_ptr, tree); in CIFSTCon()
3671 bcc_ptr += strlen(tree) + 1; in CIFSTCon()
3673 strcpy(bcc_ptr, "?????"); in CIFSTCon()
3674 bcc_ptr += strlen("?????"); in CIFSTCon()
3675 bcc_ptr += 1; in CIFSTCon()
3676 count = bcc_ptr - &pSMB->Password[0]; in CIFSTCon()
3688 bcc_ptr = pByteArea(smb_buffer_response); in CIFSTCon()
3690 length = strnlen(bcc_ptr, bytes_left - 2); in CIFSTCon()
3699 if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') && in CIFSTCon()
3700 (bcc_ptr[2] == 'C')) { in CIFSTCon()
3706 if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) { in CIFSTCon()
3711 bcc_ptr += length + 1; in CIFSTCon()
3717 tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr, in CIFSTCon()