Searched refs:subpath (Results 1 – 10 of 10) sorted by relevance
| /components/dfs/dfs_v2/filesystems/devfs/ |
| A D | devtmpfs.c | 99 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 D | dfs_tmpfs.c | 72 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 D | dfs_tmpfs.c | 89 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 D | dfs_romfs.c | 72 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 D | dfs_romfs.c | 93 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 D | dfs_ramfs.c | 66 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 D | dfs_ramfs.c | 66 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 D | ptyfs.c | 96 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 D | dfs_cromfs.c | 575 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 D | dfs_cromfs.c | 630 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 22 milliseconds