Lines Matching defs:path
66 romfs_lookup(romfs_t romfs, romfs_inode_t start, const char *path);
124 romfs_lookup(romfs_t romfs, romfs_inode_t start, const char *path)
136 p = path;
146 (p - path) < RFS_STRING_MAX) {
186 while (*path != '/' && *path)
187 path++;
188 if (!*path)
190 path++;
193 path = p + 1;
197 path = p + 1;
219 romfs_get_info(romfs_t romfs, const char *path, size_t *len, size_t *csum)
223 if (*path == '/')
224 path++;
226 i = romfs_lookup(romfs, (romfs_inode_t)romfs, path);