Home
last modified time | relevance | path

Searched refs:npath (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/kernel/fs/cifs/
H A Ddfs_cache.c82 static int get_normalized_path(const char *path, char **npath) in get_normalized_path() argument
88 *npath = (char *)path; in get_normalized_path()
90 *npath = kstrndup(path, strlen(path), GFP_KERNEL); in get_normalized_path()
91 if (!*npath) in get_normalized_path()
93 convert_delimiter(*npath, '\\'); in get_normalized_path()
98 static inline void free_normalized_path(const char *path, char *npath) in free_normalized_path() argument
100 if (path != npath) in free_normalized_path()
101 kfree(npath); in free_normalized_path()
529 char *npath; in lookup_cache_entry() local
533 npath = kstrndup(path, strlen(path), GFP_KERNEL); in lookup_cache_entry()
[all …]
H A Dconnect.c4587 char *npath; in check_dfs_prepath() local
4630 npath = build_unc_path_to_root(&v, cifs_sb, true); in check_dfs_prepath()
4635 npath = build_unc_path_to_root(&v, cifs_sb, true); in check_dfs_prepath()
4637 if (IS_ERR(npath)) { in check_dfs_prepath()
4638 rc = PTR_ERR(npath); in check_dfs_prepath()
4642 *dfs_path = npath; in check_dfs_prepath()
/OK3568_Linux_fs/kernel/sound/pci/riptide/
H A Driptide.c767 const unsigned char *npath = path; in alloclbuspath() local
769 while (*npath != 0xff) in alloclbuspath()
770 npath++; in alloclbuspath()
771 alloclbuspath(cif, source + 1, ++npath, mixer, s); in alloclbuspath()
789 const unsigned char *npath = path; in freelbuspath() local
791 while (*npath != 0xff) in freelbuspath()
792 npath++; in freelbuspath()
793 freelbuspath(cif, source + 1, ++npath); in freelbuspath()
/OK3568_Linux_fs/buildroot/package/assimp/
H A D0002-closes-2733-update-of-zlip-to-fix-gcc-build-for-v9-2-0-32-bit.patch857 char npath[MAX_PATH + 1];
861 memset(npath, 0, MAX_PATH + 1);
865 - npath[0] = path[0];
866 - npath[1] = path[1];
872 + npath[0] = path[0];
873 + npath[1] = path[1];
878 - if (MKDIR(npath) == -1)
888 + if (MKDIR(npath) == -1) {
894 npath[len++] = *p;
/OK3568_Linux_fs/kernel/fs/ext4/
H A Dextents.c1965 struct ext4_ext_path *npath = NULL; in ext4_ext_insert_extent() local
2072 BUG_ON(npath != NULL); in ext4_ext_insert_extent()
2073 npath = ext4_find_extent(inode, next, NULL, gb_flags); in ext4_ext_insert_extent()
2074 if (IS_ERR(npath)) in ext4_ext_insert_extent()
2075 return PTR_ERR(npath); in ext4_ext_insert_extent()
2076 BUG_ON(npath->p_depth != path->p_depth); in ext4_ext_insert_extent()
2077 eh = npath[depth].p_hdr; in ext4_ext_insert_extent()
2081 path = npath; in ext4_ext_insert_extent()
2173 ext4_ext_drop_refs(npath); in ext4_ext_insert_extent()
2174 kfree(npath); in ext4_ext_insert_extent()
/OK3568_Linux_fs/yocto/poky/bitbake/lib/
H A Dpyinotify.py1866 for npath in self.__format_param(path):
1868 if not isinstance(npath, str):
1873 for apath in self.__glob(npath, do_glob):