Searched refs:nls (Results 1 - 25 of 129) sorted by last modified time

123456

/linux-master/fs/ntfs3/
H A Dsuper.c59 #include <linux/nls.h>
235 unload_nls(options->nls);
284 * Load nls table or if @nls is utf8 then return NULL.
286 * It is good idea to use here "const char *nls".
289 static struct nls_table *ntfs_load_nls(char *nls) argument
293 if (!nls)
294 nls = CONFIG_NLS_DEFAULT;
296 if (strcmp(nls, "utf8") == 0)
299 if (strcmp(nls, CONFIG_NLS_DEFAUL
[all...]
H A Dntfs_fs.h92 struct nls_table *nls; member in struct:ntfs_mount_options
H A Dinode.c12 #include <linux/nls.h>
H A Ddir.c11 #include <linux/nls.h>
23 struct nls_table *nls = sbi->options->nls; local
27 if (!nls) {
50 charlen = nls->uni2char(ec, op, buf_len);
69 nls->charset);
85 * put_utf16 - Modified version of put_utf16 from fs/nls/nls_base.c
183 struct nls_table *nls = sbi->options->nls; local
188 if (!nls) {
[all...]
H A Dnamei.c9 #include <linux/nls.h>
/linux-master/fs/smb/client/
H A Dcifsproto.h10 #include <linux/nls.h>
H A Ddfs_cache.c12 #include <linux/nls.h>
H A Dcifssmb.c1153 const struct nls_table *nls = cifs_sb->local_nls; local
1172 path, PATH_MAX, nls, remap);
H A Dsmb2proto.h12 #include <linux/nls.h>
/linux-master/drivers/ufs/core/
H A Dufshcd.c14 #include <linux/nls.h>
/linux-master/fs/vboxsf/
H A Dutils.c10 #include <linux/nls.h>
362 * to [sbi]->nls, we must convert it to UTF8 here.
386 if (sbi->nls) {
397 nb = sbi->nls->char2uni(path, path_len, &uni);
464 nb = sbi->nls->uni2char(uni, out, out_bound_len);
H A Dsuper.c17 #include <linux/nls.h>
43 fsparam_string ("nls", opt_nls),
69 vbg_err("vboxsf: Cannot reconfigure nls option\n");
143 /* Load nls if not utf8 */
147 sbi->nls = load_nls_default();
149 sbi->nls = load_nls(nls_name);
151 if (!sbi->nls) {
152 vbg_err("vboxsf: Count not load '%s' nls\n", nls_name);
225 if (sbi->nls)
226 unload_nls(sbi->nls);
[all...]
/linux-master/fs/exfat/
H A Dnamei.c10 #include <linux/nls.h>
H A Dexfat_fs.h11 #include <linux/nls.h>
28 * exfat nls lossy flag
520 /* exfat/nls.c */
H A Dsuper.c18 #include <linux/nls.h>
/linux-master/drivers/usb/host/
H A Dxhci-dbgcap.c15 #include <linux/nls.h>
/linux-master/drivers/usb/core/
H A Dmessage.c17 #include <linux/nls.h>
/linux-master/fs/f2fs/
H A Dfile.c23 #include <linux/nls.h>
/linux-master/drivers/scsi/
H A Dscsi_transport_iscsi.c1600 static struct sock *nls; variable in typeref:struct:sock
2558 return nlmsg_multicast(nls, skb, 0, group, gfp);
2564 return nlmsg_unicast(nls, skb, portid);
5003 nls = netlink_kernel_create(&init_net, NETLINK_ISCSI, &cfg);
5004 if (!nls) {
5020 netlink_kernel_release(nls);
5041 netlink_kernel_release(nls);
/linux-master/fs/udf/
H A Dsuper.c45 #include <linux/nls.h>
/linux-master/fs/isofs/
H A Dinode.c20 #include <linux/nls.h>
/linux-master/drivers/platform/x86/hp/hp-bioscfg/
H A Dbioscfg.c16 #include <linux/nls.h>
/linux-master/drivers/platform/x86/dell/dell-wmi-sysman/
H A Dsysman.c19 #include <linux/nls.h>
/linux-master/fs/befs/
H A Dlinuxvfs.c16 #include <linux/nls.h>
187 if (BEFS_SB(sb)->nls) {
249 if (BEFS_SB(sb)->nls) {
502 * Uses uni2char() / char2uni() rather than the nls tables directly
508 struct nls_table *nls = BEFS_SB(sb)->nls; local
513 /* The utf8->nls conversion won't make the final nls string bigger
521 if (!nls) {
537 /* convert from Unicode to nls */
585 struct nls_table *nls = BEFS_SB(sb)->nls; local
[all...]
/linux-master/fs/
H A DMakefile89 obj-$(CONFIG_NLS) += nls/

Completed in 432 milliseconds

123456