Home
last modified time | relevance | path

Searched refs:subpath (Results 1 – 10 of 10) sorted by relevance

/components/dfs/dfs_v2/filesystems/devfs/
A Ddevtmpfs.c99 while (*subpath == '/' && *subpath) in _get_subdir()
100 subpath ++; in _get_subdir()
101 while (*subpath != '/' && *subpath) in _get_subdir()
103 *name = *subpath; in _get_subdir()
105 subpath ++; in _get_subdir()
193 subpath = path; in devtmpfs_file_lookup()
194 while (*subpath == '/' && *subpath) in devtmpfs_file_lookup()
195 subpath ++; in devtmpfs_file_lookup()
202 curpath = subpath; in devtmpfs_file_lookup()
206 while (*subpath != '/' && *subpath) in devtmpfs_file_lookup()
[all …]
/components/dfs/dfs_v1/filesystems/tmpfs/
A Ddfs_tmpfs.c72 while (*subpath == '/' && *subpath) in _get_subdir()
73 subpath ++; in _get_subdir()
74 while (*subpath != '/' && *subpath) in _get_subdir()
76 *name = *subpath; in _get_subdir()
78 subpath ++; in _get_subdir()
226 subpath = path; in dfs_tmpfs_lookup()
227 while (*subpath == '/' && *subpath) in dfs_tmpfs_lookup()
228 subpath ++; in dfs_tmpfs_lookup()
235 curpath = subpath; in dfs_tmpfs_lookup()
239 while (*subpath != '/' && *subpath) in dfs_tmpfs_lookup()
[all …]
/components/dfs/dfs_v2/filesystems/tmpfs/
A Ddfs_tmpfs.c89 while (*subpath == '/' && *subpath) in _get_subdir()
90 subpath ++; in _get_subdir()
91 while (*subpath != '/' && *subpath) in _get_subdir()
93 *name = *subpath; in _get_subdir()
95 subpath ++; in _get_subdir()
237 subpath = path; in dfs_tmpfs_lookup()
238 while (*subpath == '/' && *subpath) in dfs_tmpfs_lookup()
239 subpath ++; in dfs_tmpfs_lookup()
246 curpath = subpath; in dfs_tmpfs_lookup()
250 while (*subpath != '/' && *subpath) in dfs_tmpfs_lookup()
[all …]
/components/dfs/dfs_v1/filesystems/romfs/
A Ddfs_romfs.c72 const char *subpath, *subpath_end; in dfs_romfs_lookup() local
95 subpath = subpath_end; in dfs_romfs_lookup()
108 if (rt_strlen(dirent[index].name) == (rt_size_t)(subpath_end - subpath) && in dfs_romfs_lookup()
109 rt_strncmp(dirent[index].name, subpath, (subpath_end - subpath)) == 0) in dfs_romfs_lookup()
116 subpath = subpath_end; in dfs_romfs_lookup()
120 if (!(*subpath)) in dfs_romfs_lookup()
/components/dfs/dfs_v2/filesystems/romfs/
A Ddfs_romfs.c93 const char *subpath, *subpath_end; in __dfs_romfs_lookup() local
116 subpath = subpath_end; in __dfs_romfs_lookup()
129 if (rt_strlen(dirent[index].name) == (subpath_end - subpath) && in __dfs_romfs_lookup()
130 rt_strncmp(dirent[index].name, subpath, (subpath_end - subpath)) == 0) in __dfs_romfs_lookup()
137 subpath = subpath_end; in __dfs_romfs_lookup()
141 if (!(*subpath)) in __dfs_romfs_lookup()
/components/dfs/dfs_v1/filesystems/ramfs/
A Ddfs_ramfs.c66 const char *subpath; in dfs_ramfs_lookup() local
69 subpath = path; in dfs_ramfs_lookup()
70 while (*subpath == '/' && *subpath) in dfs_ramfs_lookup()
71 subpath ++; in dfs_ramfs_lookup()
72 if (! *subpath) /* is root directory */ in dfs_ramfs_lookup()
83 if (rt_strcmp(dirent->name, subpath) == 0) in dfs_ramfs_lookup()
/components/dfs/dfs_v2/filesystems/ramfs/
A Ddfs_ramfs.c66 const char *subpath; in dfs_ramfs_lookup() local
69 subpath = path; in dfs_ramfs_lookup()
70 while (*subpath == '/' && *subpath) in dfs_ramfs_lookup()
71 subpath ++; in dfs_ramfs_lookup()
72 if (! *subpath) /* is root directory */ in dfs_ramfs_lookup()
83 if (rt_strcmp(dirent->name, subpath) == 0) in dfs_ramfs_lookup()
/components/dfs/dfs_v2/filesystems/ptyfs/
A Dptyfs.c96 const char *subpath = path; in _split_out_subdir() local
98 while (*subpath == '/' && *subpath) in _split_out_subdir()
100 subpath++; in _split_out_subdir()
103 while (*subpath != '/' && *subpath) in _split_out_subdir()
105 *name++ = *subpath++; in _split_out_subdir()
/components/dfs/dfs_v1/filesystems/cromfs/
A Ddfs_cromfs.c575 const char *subpath = NULL, *subpath_end = NULL; in cromfs_lookup() local
600 subpath = subpath_end; in cromfs_lookup()
605 if (*subpath == '\0') in cromfs_lookup()
627 uint32_t name_len = subpath_end - subpath; in cromfs_lookup()
632 if (memcmp(di_iter->dirent.name, subpath, name_len) == 0) in cromfs_lookup()
/components/dfs/dfs_v2/filesystems/cromfs/
A Ddfs_cromfs.c630 const char *subpath = NULL, *subpath_end = NULL; in cromfs_lookup() local
655 subpath = subpath_end; in cromfs_lookup()
660 if (*subpath == '\0') in cromfs_lookup()
682 uint32_t name_len = subpath_end - subpath; in cromfs_lookup()
687 if (memcmp(di_iter->dirent.name, subpath, name_len) == 0) in cromfs_lookup()

Completed in 21 milliseconds