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,
131 int tmpfs_mkdir(struct Vnode *parent, const char *relpath, mode_t mode, struct Vnode **vpp);
133 int tmpfs_unlink(struct Vnode *parent, struct Vnode *node, const char *relpath);
515 const char *relpath,
527 copy = strdup(relpath);
591 /* Free the copy of the relpath and return success */
658 const char *relpath,
670 copy = strdup(relpath);
729 /* Free the copy of the relpath, release our reference to the parent directory,
771 const char *relpath,
786 copy = strdup(relpath);
803 * relpath.
840 /* No, this was not the final segement of the relpath.
858 * object associated with the terminal segment of the relpath.
906 const char *relpath,
918 ret = tmpfs_find_object(fs, relpath, &to, parent);
953 const char *relpath,
962 ret = tmpfs_find_object(fs, relpath, &to, parent);
1907 int tmpfs_unlink(struct Vnode *parent, struct Vnode *node, const char *relpath)
1914 PRINT_INFO("mountpt: %p node: %p relpath: %s\n", parent, node, relpath);
1915 DEBUGASSERT(parent != NULL && node != NULL && relpath != NULL);
1917 if (strlen(relpath) == 0)
1948 ret = tmpfs_find_file(fs, relpath, &tfo, &parent_dir);
2031 int tmpfs_mkdir(struct Vnode *parent, const char *relpath, mode_t mode, struct Vnode **vpp)
2039 DEBUGASSERT(parent != NULL && relpath != NULL);
2041 if (strlen(relpath) == 0)
2060 ret = tmpfs_create_directory(fs, relpath, parent_tdo, &tdo);
2489 /* Find the tmpfs object at the relpath. If successful,