Lines Matching refs:username
1863 /* NULL username means anonymous session */
1870 /* anything else takes username/password */
1872 ctx->username ? ctx->username : "",
1875 if ((ctx->username && strlen(ctx->username) != 0) &&
2087 /* Populate username and pw fields from keyring if possible */
2163 cifs_dbg(FYI, "Bad value from username search (len=%zd)\n",
2169 ctx->username = kstrndup(payload, len, GFP_KERNEL);
2170 if (!ctx->username) {
2171 cifs_dbg(FYI, "Unable to allocate %zd bytes for username\n",
2176 cifs_dbg(FYI, "%s: username=%s\n", __func__, ctx->username);
2182 kfree(ctx->username);
2183 ctx->username = NULL;
2193 kfree(ctx->username);
2194 ctx->username = NULL;
2208 kfree(ctx->username);
2209 ctx->username = NULL;
2310 if (ctx->username) {
2311 ses->user_name = kstrdup(ctx->username, GFP_KERNEL);
3968 /* krb5 is special, since we don't need username or pw */
4037 kfree(ctx->username);