Home
last modified time | relevance | path

Searched refs:FTS_NAMEONLY (Results 1 – 6 of 6) sorted by relevance

/freebsd/lib/libc/gen/
H A Dfts-compat11.c357 if (sp->fts_child != NULL && ISSET(FTS_NAMEONLY)) { in freebsd11_fts_read()
358 CLR(FTS_NAMEONLY); in freebsd11_fts_read()
512 if (instr != 0 && instr != FTS_NAMEONLY) { in freebsd11_fts_children()
546 if (instr == FTS_NAMEONLY) { in freebsd11_fts_children()
547 SET(FTS_NAMEONLY); in freebsd11_fts_children()
H A Dfts.c356 if (sp->fts_child != NULL && ISSET(FTS_NAMEONLY)) { in fts_read()
357 CLR(FTS_NAMEONLY); in fts_read()
511 if (instr != 0 && instr != FTS_NAMEONLY) { in fts_children()
545 if (instr == FTS_NAMEONLY) { in fts_children()
546 SET(FTS_NAMEONLY); in fts_children()
H A Dfts-compat.h57 #define FTS_NAMEONLY 0x100 /* (private) child names only */ macro
H A Dfts-compat.c367 if (sp->fts_child != NULL && ISSET(FTS_NAMEONLY)) { in __fts_read_44bsd()
368 CLR(FTS_NAMEONLY); in __fts_read_44bsd()
518 if (instr != 0 && instr != FTS_NAMEONLY) { in __fts_children_44bsd()
552 if (instr == FTS_NAMEONLY) { in __fts_children_44bsd()
553 SET(FTS_NAMEONLY); in __fts_children_44bsd()
/freebsd/include/
H A Dfts.h59 #define FTS_NAMEONLY 0x100 /* (private) child names only */ macro
/freebsd/bin/ls/
H A Dls.c678 options & FTS_NOSTAT ? FTS_NAMEONLY : 0; in traverse()