• Home
  • Raw
  • Download

Lines Matching refs:relpath

88                              const char *relpath,
94 const char *relpath,
99 const char *relpath, struct tmpfs_object_s **object,
102 const char *relpath,
106 const char *relpath,
130 int tmpfs_mkdir(struct Vnode *parent, const char *relpath, mode_t mode, struct Vnode **vpp);
132 int tmpfs_unlink(struct Vnode *parent, struct Vnode *node, const char *relpath);
514 const char *relpath, in tmpfs_create_file() argument
526 copy = strdup(relpath); in tmpfs_create_file()
657 const char *relpath, in tmpfs_create_directory() argument
669 copy = strdup(relpath); in tmpfs_create_directory()
770 const char *relpath, in tmpfs_find_object() argument
785 copy = strdup(relpath); in tmpfs_find_object()
905 const char *relpath, in tmpfs_find_file() argument
917 ret = tmpfs_find_object(fs, relpath, &to, parent); in tmpfs_find_file()
952 const char *relpath, in tmpfs_find_directory() argument
961 ret = tmpfs_find_object(fs, relpath, &to, parent); in tmpfs_find_directory()
1897 int tmpfs_unlink(struct Vnode *parent, struct Vnode *node, const char *relpath) in tmpfs_unlink() argument
1904 PRINT_INFO("mountpt: %p node: %p relpath: %s\n", parent, node, relpath); in tmpfs_unlink()
1905 DEBUGASSERT(parent != NULL && node != NULL && relpath != NULL); in tmpfs_unlink()
1907 if (strlen(relpath) == 0) in tmpfs_unlink()
1938 ret = tmpfs_find_file(fs, relpath, &tfo, &parent_dir); in tmpfs_unlink()
2021 int tmpfs_mkdir(struct Vnode *parent, const char *relpath, mode_t mode, struct Vnode **vpp) in tmpfs_mkdir() argument
2029 DEBUGASSERT(parent != NULL && relpath != NULL); in tmpfs_mkdir()
2031 if (strlen(relpath) == 0) in tmpfs_mkdir()
2050 ret = tmpfs_create_directory(fs, relpath, parent_tdo, &tdo); in tmpfs_mkdir()