Lines Matching refs:sep
281 char *sep; in tarfs_lookup_path() local
297 sep = NULL; in tarfs_lookup_path()
319 for (sep = name, len = 0; in tarfs_lookup_path()
320 *sep != '\0' && *sep != '/' && len < namelen; in tarfs_lookup_path()
321 sep++, len++) in tarfs_lookup_path()
392 *sepp = sep; in tarfs_lookup_path()
442 char *namep, *sep; in tarfs_alloc_one() local
588 char *eol, *key, *value, *sep; in tarfs_alloc_one() local
589 size_t len = strtoul(line, &sep, 10); in tarfs_alloc_one()
590 if (len == 0 || sep == line || *sep != ' ') { in tarfs_alloc_one()
606 key = sep + 1; in tarfs_alloc_one()
607 sep = strchr(key, '='); in tarfs_alloc_one()
608 if (sep == NULL) { in tarfs_alloc_one()
614 *sep = '\0'; in tarfs_alloc_one()
615 value = sep + 1; in tarfs_alloc_one()
626 major = strtol(value, &sep, 10); in tarfs_alloc_one()
627 if (sep != eol) { in tarfs_alloc_one()
634 minor = strtol(value, &sep, 10); in tarfs_alloc_one()
635 if (sep != eol) { in tarfs_alloc_one()
651 realsize = strtoul(value, &sep, 10); in tarfs_alloc_one()
652 if (sep != eol) { in tarfs_alloc_one()
658 flags |= tarfs_strtofflags(value, &sep); in tarfs_alloc_one()
659 if (sep != eol) { in tarfs_alloc_one()
698 &sep, &parent, &tnp, true); in tarfs_alloc_one()
717 error = tarfs_alloc_node(tmp, namep, sep - namep, VDIR, in tarfs_alloc_one()
722 error = tarfs_alloc_node(tmp, namep, sep - namep, VREG, in tarfs_alloc_one()
749 error = tarfs_alloc_node(tmp, namep, sep - namep, VREG, in tarfs_alloc_one()
767 error = tarfs_alloc_node(tmp, namep, sep - namep, VLNK, in tarfs_alloc_one()
789 error = tarfs_alloc_node(tmp, namep, sep - namep, VBLK, in tarfs_alloc_one()
811 error = tarfs_alloc_node(tmp, namep, sep - namep, VCHR, in tarfs_alloc_one()