Searched refs:fts_info (Results 1 - 25 of 46) sorted by relevance

12

/freebsd-current/tools/test/stress2/misc/
H A Dprocfs3.sh92 switch (p->fts_info) {
109 warnx("%s: %s. fts_info = %d", p->fts_path, strerror(p->fts_errno),
110 p->fts_info);
113 printf("%s: default, %d\n", getprogname(), p->fts_info);
H A Dfts2.sh29 # Show invalid fts_info value:
34 # fts_info: 13 FTS_SLNONE
203 if (p->fts_info == FTS_D || /* preorder directory */
204 p->fts_info == FTS_DNR || /* unreadable directory */
205 p->fts_info == FTS_DOT || /* dot or dot-dot */
206 p->fts_info == FTS_DP || /* postorder directory */
207 p->fts_info == FTS_F || /* regular file */
208 p->fts_info == FTS_NS) /* stat(2) failed */
214 fprintf(stderr, "fts_info: %d %s\n", p->fts_info,
[all...]
H A Ddev.sh97 if (p->fts_info == FTS_D ||
98 p->fts_info == FTS_DP)
H A Ddev2.sh109 if (p->fts_info == FTS_D ||
110 p->fts_info == FTS_DP)
H A Dposix_openpt2.sh94 if (p->fts_info == FTS_D ||
95 p->fts_info == FTS_DP)
H A Dpts.sh94 if (p->fts_info == FTS_D ||
95 p->fts_info == FTS_DP)
H A Dpty.sh92 if (p->fts_info == FTS_D ||
93 p->fts_info == FTS_DP)
H A Ddev3.sh120 if (p->fts_info == FTS_D ||
121 p->fts_info == FTS_DP)
H A Dfts.sh101 switch (p->fts_info) {
118 printf("%s: default, %d\n", getprogname(), p->fts_info);
H A Dsigxcpu.sh111 switch (p->fts_info) {
128 printf("%s: default, %d\n", getprogname(), p->fts_info);
/freebsd-current/lib/libc/gen/
H A Dfts-compat.c172 p->fts_info = fts_stat(sp, p, ISSET(FTS_COMFOLLOW));
175 if (p->fts_info == FTS_DOT)
176 p->fts_info = FTS_D;
200 * finished the node before the root(s); set p->fts_info to FTS_INIT
206 sp->fts_cur->fts_info = FTS_INIT;
327 p->fts_info = fts_stat(sp, p, 0);
338 (p->fts_info == FTS_SL || p->fts_info == FTS_SLNONE)) {
339 p->fts_info = fts_stat(sp, p, 1);
340 if (p->fts_info
[all...]
H A Dfts.c160 p->fts_info = fts_stat(sp, p, ISSET(FTS_COMFOLLOW), -1);
163 if (p->fts_info == FTS_DOT)
164 p->fts_info = FTS_D;
188 * finished the node before the root(s); set p->fts_info to FTS_INIT
194 sp->fts_cur->fts_info = FTS_INIT;
315 p->fts_info = fts_stat(sp, p, 0, -1);
326 (p->fts_info == FTS_SL || p->fts_info == FTS_SLNONE)) {
327 p->fts_info = fts_stat(sp, p, 1, -1);
328 if (p->fts_info
[all...]
H A Dfts-compat11.c162 p->fts_info = fts_stat(sp, p, ISSET(FTS_COMFOLLOW), -1);
165 if (p->fts_info == FTS_DOT)
166 p->fts_info = FTS_D;
190 * finished the node before the root(s); set p->fts_info to FTS_INIT
196 sp->fts_cur->fts_info = FTS_INIT;
317 p->fts_info = fts_stat(sp, p, 0, -1);
328 (p->fts_info == FTS_SL || p->fts_info == FTS_SLNONE)) {
329 p->fts_info = fts_stat(sp, p, 1, -1);
330 if (p->fts_info
[all...]
H A Dftw-compat11.c56 switch (cur->fts_info) {
H A Dftw.c48 switch (cur->fts_info) {
H A Dnftw.c59 switch (cur->fts_info) {
H A Dfts-compat.h106 u_short fts_info; /* user flags for FTSENT structure */ member in struct:_ftsent
H A Dfts-compat11.h68 int fts_info; /* user status for FTSENT structure */ member in struct:_ftsent11
H A Dnftw-compat11.c63 switch (cur->fts_info) {
/freebsd-current/tools/test/stress2/testcases/fts/
H A Dfts.c72 switch (p->fts_info) {
93 printf("%s: default, %d\n", getprogname(), p->fts_info);
/freebsd-current/contrib/mandoc/
H A Dcompat_fts.c115 p->fts_info = fts_stat(sp, p);
118 if (p->fts_info == FTS_DOT)
119 p->fts_info = FTS_D;
142 * finished the node before the root(s); set p->fts_info to FTS_INIT
148 sp->fts_cur->fts_info = FTS_INIT;
242 if (p->fts_info == FTS_D) {
250 p->fts_info = FTS_DP;
256 * FTS_STOP or the fts_info field of the node.
315 p->fts_info = p->fts_errno ? FTS_ERR : FTS_DP;
368 * If being called from fts_read, set the fts_info fiel
[all...]
H A Dcompat_fts.h89 unsigned short fts_info; /* user flags for FTSENT structure */ member in struct:_ftsent
/freebsd-current/contrib/netbsd-tests/lib/libc/gen/
H A Dt_getcwd.c115 switch(ftse->fts_info) {
/freebsd-current/include/
H A Dfts.h101 int fts_info; /* user status for FTSENT structure */ member in struct:_ftsent
/freebsd-current/contrib/mtree/
H A Dverify.c102 switch(p->fts_info) {
136 p->fts_info == FTS_D) {
149 if (!eflag && !(dflag && p->fts_info == FTS_SL)) {

Completed in 239 milliseconds

12