Home
last modified time | relevance | path

Searched refs:uniname (Results 1 – 5 of 5) sorted by relevance

/fs/exfat/
Dnls.c484 const unsigned short *uniname = p_uniname->name; in exfat_utf16_to_utf8() local
487 len = utf16s_to_utf8s(uniname, MAX_NAME_LENGTH, UTF16_HOST_ENDIAN, in exfat_utf16_to_utf8()
499 unsigned short *uniname = p_uniname->name; in exfat_utf8_to_utf16() local
504 (wchar_t *)uniname, MAX_NAME_LENGTH + 2); in exfat_utf8_to_utf16()
518 if (*uniname < 0x0020 || in exfat_utf8_to_utf16()
519 exfat_wstrchr(bad_uni_chars, *uniname)) in exfat_utf8_to_utf16()
522 upname[i] = cpu_to_le16(exfat_toupper(sb, *uniname)); in exfat_utf8_to_utf16()
523 uniname++; in exfat_utf8_to_utf16()
526 *uniname = '\0'; in exfat_utf8_to_utf16()
546 const unsigned short *uniname = p_uniname->name; in __exfat_utf16_to_nls() local
[all …]
Ddir.c15 unsigned short *uniname) in exfat_extract_uni_name() argument
20 *uniname = le16_to_cpu(ep->dentry.name.unicode_0_14[i]); in exfat_extract_uni_name()
21 if (*uniname == 0x0) in exfat_extract_uni_name()
23 uniname++; in exfat_extract_uni_name()
27 *uniname = 0x0; in exfat_extract_uni_name()
33 struct exfat_chain *p_dir, int entry, unsigned short *uniname) in exfat_get_uniname_from_ext_entry() argument
56 len = exfat_extract_uni_name(ep, uniname); in exfat_get_uniname_from_ext_entry()
60 uniname += EXFAT_FILE_NAME_LEN; in exfat_get_uniname_from_ext_entry()
421 unsigned short *uniname) in exfat_init_name_entry() argument
429 if (*uniname != 0x0) { in exfat_init_name_entry()
[all …]
Dexfat_fs.h496 struct exfat_uni_name *uniname, unsigned char *p_cstring,
500 struct exfat_uni_name *uniname, int *p_lossy);
Dnamei.c490 struct exfat_uni_name uniname; in exfat_add_entry() local
495 ret = exfat_resolve_path(inode, path, p_dir, &uniname); in exfat_add_entry()
499 num_entries = exfat_calc_num_entries(&uniname); in exfat_add_entry()
529 ret = exfat_init_ext_entry(inode, p_dir, dentry, num_entries, &uniname); in exfat_add_entry()
/fs/smb/server/
Dauth.c129 __le16 *uniname = NULL; in calc_ntlmv2_hash() local
154 uniname = kzalloc(2 + UNICODE_LEN(len), GFP_KERNEL); in calc_ntlmv2_hash()
155 if (!uniname) { in calc_ntlmv2_hash()
160 conv_len = smb_strtoUTF16(uniname, user_name(sess->user), len, in calc_ntlmv2_hash()
166 UniStrupr(uniname); in calc_ntlmv2_hash()
169 (char *)uniname, in calc_ntlmv2_hash()
203 kfree(uniname); in calc_ntlmv2_hash()