/src/bin/ls/ |
cmp.c | 71 return (strcmp(a->fts_name, b->fts_name)); 78 return (strcmp(b->fts_name, a->fts_name));
|
print.c | 91 return chcnt + safe_print(p->fts_name); 104 return chcnt + printescaped(p->fts_name); 110 return printf("%s/%s", p->fts_path, p->fts_name); 112 return printf("%s", p->fts_name); 491 (void)snprintf(name, sizeof(name), "%s", p->fts_name); 494 "%s/%s", p->fts_parent->fts_accpath, p->fts_name); 536 snprintf(name, sizeof(name), "%s", p->fts_name); 539 p->fts_parent->fts_accpath, p->fts_name);
|
ls.c | 444 warnx("%s: directory causes a cycle", p->fts_name); 453 p->fts_name[0] == '.' && !f_listdot) { 532 cur->fts_name, strerror(cur->fts_errno)); 550 if (cur->fts_name[0] == '.' && !f_listdot) {
|
/src/lib/libc/gen/ |
fts.c | 169 p->fts_accpath = p->fts_name; 250 memmove(sp->fts_path, p->fts_name, len + 1); 251 if ((cp = strrchr(p->fts_name, '/')) && (cp != p->fts_name || cp[1])) { 253 memmove(p->fts_name, cp, len + 1); 483 memmove(t, p->fts_name, (size_t)(p->fts_namelen + 1)); 842 ISSET(FTS_NOCHDIR) ? p->fts_path : p->fts_name; 848 memmove(cp, p->fts_name, 851 p->fts_accpath = p->fts_name; 978 if (ISDOT(p->fts_name)) [all...] |
/src/usr.bin/find/ |
find.c | 153 return (strcoll((*e1)->fts_name, (*e2)->fts_name));
|
function.c | 1382 return (!fnmatch(plan->c_data, entry->fts_name, 0)); 1406 return (!fnmatch(plan->c_data, entry->fts_name, FNM_CASEFOLD));
|
/src/include/ |
fts.h | 97 __fts_length_t fts_namelen; /* strlen(fts_name) */ 135 char fts_name[1]; /* file name */ member in struct:_ftsent
|
/src/usr.sbin/mtree/ |
verify.c | 94 if (check_excludes(p->fts_name, p->fts_path)) { 128 !fnmatch(ep->name, p->fts_name, FNM_PATHNAME)) || 129 !strcmp(ep->name, p->fts_name)) {
|
create.c | 128 if (check_excludes(p->fts_name, p->fts_path)) { 231 S_ISDIR(p->fts_statp->st_mode) ? "" : " ", vispath(p->fts_name));
|
spec.c | 880 return strcmp((*a)->fts_name, (*b)->fts_name);
|
/src/bin/pax/ |
pax.h | 114 char fts_name[PAXPATHLEN+1]; /* name from fts (for *org_name) */ member in struct:__anon7bda4eac0108
|
ftree.c | 727 arcn->org_name = arcn->fts_name; 728 strlcpy(arcn->fts_name, ftent->fts_path, sizeof arcn->fts_name);
|
/src/usr.bin/cvslatest/ |
cvslatest.c | 189 if (strcmp(entry->fts_name, name) != 0)
|
/src/bin/cp/ |
cp.c | 363 to.p_path, curr->fts_name);
|