Home
last modified time | relevance | path

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

/fs/cifs/
Dcifs_unicode.c41 const struct nls_table *codepage) in cifs_utf16_bytes() argument
54 charlen = codepage->uni2char(ftmp, tmp, NLS_MAX_CHARSET_SIZE); in cifs_utf16_bytes()
148 const struct nls_table *codepage, bool mapchar) in cifs_from_utf16() argument
152 int nullsize = nls_nullsize(codepage); in cifs_from_utf16()
175 charlen = cifs_mapchar(tmp, ftmp, codepage, mapchar); in cifs_from_utf16()
181 charlen = cifs_mapchar(&to[outlen], ftmp, codepage, mapchar); in cifs_from_utf16()
200 const struct nls_table *codepage) in cifs_strtoUTF16() argument
207 if (!strcmp(codepage->charset, "utf8")) { in cifs_strtoUTF16()
228 charlen = codepage->char2uni(from, len, &wchar_to); in cifs_strtoUTF16()
258 const bool is_unicode, const struct nls_table *codepage) in cifs_strndup_from_utf16() argument
[all …]
Dsmbencrypt.c208 const struct nls_table *codepage) in E_md4hash() argument
216 len = cifs_strtoUTF16(wpwd, passwd, 128, codepage); in E_md4hash()
231 const struct nls_table *codepage) in SMBNTencrypt() argument
239 rc = E_md4hash(passwd, p16, codepage); in SMBNTencrypt()
Dcifs_unicode.h78 const struct nls_table *codepage, bool mapchar);
80 const struct nls_table *codepage);
84 const struct nls_table *codepage);
Ddir.c727 struct nls_table *codepage = CIFS_SB(dentry->d_sb)->local_nls; in cifs_ci_hash() local
733 hash = partial_name_hash(nls_tolower(codepage, q->name[i]), in cifs_ci_hash()
745 struct nls_table *codepage = CIFS_SB(pinode->i_sb)->local_nls; in cifs_ci_compare() local
748 (nls_strnicmp(codepage, name->name, str, len) == 0)) in cifs_ci_compare()
Dcifsproto.h463 const struct nls_table *codepage);
DCHANGES102 and to handle certain codepage conversions better. Fix mount and
685 of default nls 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
3258 codepage); in jfs_readdir()
3279 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.h30 unsigned short codepage; /* Codepage for shortname conversions */ member
Dinode.c995 opts->codepage = fat_default_codepage; in parse_options()
1095 opts->codepage = option; in parse_options()
1492 sprintf(buf, "cp%d", sbi->options.codepage); in fat_fill_super()