Home | History | Annotate | Download | only in makefs

Lines Matching refs:join

123  * join current entry with the list. Return the current entry to replace
128 fsnode_join(fsnode **curp, fsnode *join, fsnode *last, const char *path,
134 cur = join->next;
151 * both the entry to join and this entry are directories
173 /* merge the join list */
174 if (cur == join->next)
175 join->next = cur->next;
178 for (p = join->next;
192 * append the tree to a fsnode of `join' if it is not NULL.
197 walk_dir(const char *root, const char *dir, fsnode *parent, fsnode *join,
219 if (join != NULL) {
220 first = cur = join;
232 if (join != NULL)
276 if (join != NULL) {
277 if (fsnode_join(&cur, join, last, path, name, &stbuf,
284 fsnode *p = join;
344 if (join == NULL)