Searched refs:iocharset (Results 1 - 11 of 11) sorted by relevance

/linux-master/fs/befs/
H A Dlinuxvfs.c683 {Opt_charset, "iocharset=%s"},
702 opts->iocharset = NULL;
745 kfree(opts->iocharset);
746 opts->iocharset = match_strdup(&args[0]);
747 if (!opts->iocharset) {
749 "iocharset string\n");
776 if (opts->iocharset)
777 seq_printf(m, ",charset=%s", opts->iocharset);
791 kfree(BEFS_SB(sb)->mount_opts.iocharset);
792 BEFS_SB(sb)->mount_opts.iocharset
[all...]
H A Dbefs.h29 char *iocharset; member in struct:befs_mount_options
/linux-master/fs/isofs/
H A Dinode.c165 char *iocharset; member in struct:iso9660_options
306 {Opt_iocharset, "iocharset=%s"},
357 popt->iocharset = NULL;
392 kfree(popt->iocharset);
393 popt->iocharset = kstrdup("utf8", GFP_KERNEL);
394 if (!popt->iocharset)
398 kfree(popt->iocharset);
399 popt->iocharset = match_strdup(&args[0]);
400 if (!popt->iocharset)
522 seq_printf(m, ",iocharset
[all...]
/linux-master/fs/smb/client/
H A Dfs_context.c171 fsparam_string("iocharset", Opt_iocharset),
354 new_ctx->iocharset = NULL;
368 DUP_CTX_STR(iocharset);
868 if (new_ctx->iocharset &&
869 (!old_ctx->iocharset || strcmp(new_ctx->iocharset, old_ctx->iocharset))) {
870 cifs_errorf(fc, "can not change iocharset during remount\n");
909 * workstation_name/nodename/iocharset
926 STEAL_STRING(cifs_sb, ctx, iocharset);
[all...]
H A Dfs_context.h190 char *iocharset; /* local code page for mapping to and from Unicode */ member in struct:smb3_fs_context
H A Dcifsfs.c596 if (cifs_sb->ctx->iocharset)
597 seq_printf(s, ",iocharset=%s", cifs_sb->ctx->iocharset);
H A Dconnect.c3280 if (ctx->iocharset == NULL) {
3284 cifs_sb->local_nls = load_nls(ctx->iocharset);
3286 cifs_dbg(VFS, "CIFS mount error: iocharset %s not found\n",
3287 ctx->iocharset);
/linux-master/fs/exfat/
H A Dsuper.c30 if (sbi->options.iocharset != exfat_default_iocharset)
31 kfree(sbi->options.iocharset);
148 seq_puts(m, ",iocharset=utf8");
150 seq_printf(m, ",iocharset=%s", sbi->nls_io->charset);
234 fsparam_string("iocharset", Opt_charset),
285 opts->iocharset = param->string;
650 if (!strcmp(sbi->options.iocharset, "utf8"))
653 sbi->nls_io = load_nls(sbi->options.iocharset);
656 sbi->options.iocharset);
759 sbi->options.iocharset
[all...]
H A Dexfat_fs.h229 char *iocharset; member in struct:exfat_mount_options
/linux-master/fs/fat/
H A Dinode.c717 if (opts->iocharset != fat_default_iocharset) {
718 /* Note: opts->iocharset can be NULL here */
719 kfree(opts->iocharset);
720 opts->iocharset = fat_default_iocharset;
968 seq_printf(m, ",iocharset=%s", sbi->nls_io->charset);
1104 {Opt_charset, "iocharset=%s"},
1140 char *iocharset; local
1307 iocharset = match_strdup(&args[0]);
1308 if (!iocharset)
1310 opts->iocharset
[all...]
H A Dfat.h34 char *iocharset; /* Charset used for filename input/display */ member in struct:fat_mount_options

Completed in 294 milliseconds