Home
last modified time | relevance | path

Searched refs:utf16_path (Results 1 – 4 of 4) sorted by relevance

/linux-4.19.296/fs/cifs/
Dlink.c401 __le16 *utf16_path; in smb3_query_mf_symlink() local
415 utf16_path = cifs_convert_path_to_utf16(path, cifs_sb); in smb3_query_mf_symlink()
416 if (utf16_path == NULL) in smb3_query_mf_symlink()
423 kfree(utf16_path); in smb3_query_mf_symlink()
427 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, pfile_info, NULL, in smb3_query_mf_symlink()
449 kfree(utf16_path); in smb3_query_mf_symlink()
464 __le16 *utf16_path; in smb3_create_mf_symlink() local
473 utf16_path = cifs_convert_path_to_utf16(path, cifs_sb); in smb3_create_mf_symlink()
474 if (!utf16_path) in smb3_create_mf_symlink()
486 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, NULL, in smb3_create_mf_symlink()
[all …]
Dsmb2inode.c47 __le16 *utf16_path = NULL; in smb2_open_op_close() local
63 utf16_path = cifs_convert_path_to_utf16(full_path, cifs_sb); in smb2_open_op_close()
64 if (!utf16_path) in smb2_open_op_close()
74 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, NULL, in smb2_open_op_close()
77 kfree(utf16_path); in smb2_open_op_close()
129 kfree(utf16_path); in smb2_open_op_close()
Dsmb2ops.c691 __le16 *utf16_path; in smb2_is_path_accessible() local
699 utf16_path = cifs_convert_path_to_utf16(full_path, cifs_sb); in smb2_is_path_accessible()
700 if (!utf16_path) in smb2_is_path_accessible()
713 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, NULL, NULL); in smb2_is_path_accessible()
715 kfree(utf16_path); in smb2_is_path_accessible()
720 kfree(utf16_path); in smb2_is_path_accessible()
846 __le16 *utf16_path; in smb2_query_eas() local
853 utf16_path = cifs_convert_path_to_utf16(path, cifs_sb); in smb2_query_eas()
854 if (!utf16_path) in smb2_query_eas()
867 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, NULL, NULL); in smb2_query_eas()
[all …]
Dsmb2pdu.c2029 __le16 *utf16_path = NULL; in smb311_posix_mkdir() local
2034 utf16_path = cifs_convert_path_to_utf16(full_path, cifs_sb); in smb311_posix_mkdir()
2035 if (!utf16_path) in smb311_posix_mkdir()
2082 tcon->treeName, utf16_path); in smb311_posix_mkdir()
2089 kfree(utf16_path); in smb311_posix_mkdir()
2090 utf16_path = copy_path; in smb311_posix_mkdir()
2092 uni_path_len = (2 * UniStrnlen((wchar_t *)utf16_path, PATH_MAX)) + 2; in smb311_posix_mkdir()
2102 memcpy((char *)copy_path, (const char *)utf16_path, in smb311_posix_mkdir()
2106 kfree(utf16_path); in smb311_posix_mkdir()
2107 utf16_path = copy_path; in smb311_posix_mkdir()
[all …]