Home
last modified time | relevance | path

Searched refs:codepage (Results 1 – 12 of 12) sorted by relevance

/fs/cifs/
Dcifs_unicode.c42 const struct nls_table *codepage) in cifs_utf16_bytes() argument
55 charlen = codepage->uni2char(ftmp, tmp, NLS_MAX_CHARSET_SIZE); in cifs_utf16_bytes()
211 const struct nls_table *codepage, int map_type) in cifs_from_utf16() argument
215 int nullsize = nls_nullsize(codepage); in cifs_from_utf16()
238 charlen = cifs_mapchar(tmp, ftmp, codepage, map_type); in cifs_from_utf16()
244 charlen = cifs_mapchar(&to[outlen], ftmp, codepage, map_type); in cifs_from_utf16()
263 const struct nls_table *codepage) in cifs_strtoUTF16() argument
270 if (!strcmp(codepage->charset, "utf8")) { in cifs_strtoUTF16()
291 charlen = codepage->char2uni(from, len, &wchar_to); in cifs_strtoUTF16()
321 const bool is_unicode, const struct nls_table *codepage) in cifs_strndup_from_utf16() argument
[all …]
Dsmbencrypt.c209 const struct nls_table *codepage) in E_md4hash() argument
217 len = cifs_strtoUTF16(wpwd, passwd, 128, codepage); in E_md4hash()
232 const struct nls_table *codepage) in SMBNTencrypt() argument
240 rc = E_md4hash(passwd, p16, codepage); in SMBNTencrypt()
Dcifs_unicode.h111 const struct nls_table *codepage);
115 const struct nls_table *codepage);
Ddir.c896 struct nls_table *codepage = CIFS_SB(dentry->d_sb)->local_nls; in cifs_ci_hash() local
903 charlen = codepage->char2uni(&q->name[i], q->len - i, &c); in cifs_ci_hash()
917 struct nls_table *codepage = CIFS_SB(parent->d_sb)->local_nls; in cifs_ci_compare() local
932 l1 = codepage->char2uni(&str[i], len - i, &c1); in cifs_ci_compare()
933 l2 = codepage->char2uni(&name->name[i], name->len - i, &c2); in cifs_ci_compare()
Dcifsproto.h497 const struct nls_table *codepage);
/fs/jfs/
Djfs_unicode.c33 int len, struct nls_table *codepage) in jfs_strfromUCS_le() argument
40 if (codepage) { in jfs_strfromUCS_le()
44 codepage->uni2char(le16_to_cpu(from[i]), in jfs_strfromUCS_le()
83 struct nls_table *codepage) in jfs_strtoUCS() argument
88 if (codepage) { in jfs_strtoUCS()
91 charlen = codepage->char2uni(from, len, &to[i]); in jfs_strtoUCS()
96 codepage->charset, *from); in jfs_strtoUCS()
Djfs_dtree.c3008 struct nls_table *codepage = JFS_SBI(ip->i_sb)->nls_tab; in jfs_readdir() local
3253 codepage); in jfs_readdir()
3273 len, codepage); in jfs_readdir()
/fs/nls/
DKconfig45 codepage if you want to be able to read/write these filenames on
48 say Y here if you want to include the DOS codepage that is used in
57 codepage if you want to be able to read/write these filenames on
60 say Y here if you want to include the DOS codepage that is used for
69 codepage if you want to be able to read/write these filenames on
72 say Y here if you want to include the DOS codepage that is used
82 codepage if you want to be able to read/write these filenames on
85 say Y here if you want to include the DOS codepage that is used for
88 languages that are not part of the US codepage 437.
98 codepage if you want to be able to read/write these filenames on
[all …]
/fs/ncpfs/
Dioctl.c163 struct nls_table *codepage; in ncp_set_charsets() local
173 codepage = NULL; in ncp_set_charsets()
174 user.codepage[NCP_IOCSNAME_LEN] = 0; in ncp_set_charsets()
175 if (!user.codepage[0] || !strcmp(user.codepage, "default")) in ncp_set_charsets()
176 codepage = load_nls_default(); in ncp_set_charsets()
178 codepage = load_nls(user.codepage); in ncp_set_charsets()
179 if (!codepage) { in ncp_set_charsets()
195 unload_nls(codepage); in ncp_set_charsets()
203 oldset_cp = codepage; in ncp_set_charsets()
212 server->nls_vol = codepage; in ncp_set_charsets()
[all …]
/fs/fat/
DKconfig78 int "Default codepage for FAT"
82 This option should be set to the codepage of your FAT filesystems.
83 It can be overridden with the "codepage" mount option.
Dfat.h34 unsigned short codepage; /* Codepage for shortname conversions */ member
Dinode.c1033 opts->codepage = fat_default_codepage; in parse_options()
1138 opts->codepage = option; in parse_options()
1703 sprintf(buf, "cp%d", sbi->options.codepage); in fat_fill_super()