| /src/tests/lib/libc/gen/ |
| t_getcwd.c | 39 #include <fts.h> 77 FTS *fts; local 96 fts = fts_open(argv, ops, NULL); 98 if (fts == NULL) { 99 str = "failed to initialize fts(3)"; 103 while ((ftse = fts_read(fts)) != NULL) { 109 (void)fts_set(fts, ftse, FTS_SKIP); 137 if (fts != NULL) 138 (void)fts_close(fts); [all...] |
| /src/tests/lib/libc/sys/ |
| t_stat.c | 44 #include <fts.h> 98 FTS *fts; local 107 fts = fts_open(argv, ops, NULL); 108 ATF_REQUIRE(fts != NULL); 110 while ((ftse = fts_read(fts)) != NULL) { 116 (void)fts_set(fts, ftse, FTS_SKIP); 139 * Check that fts(3)'s stat(2) 143 atf_tc_fail("stat(2) and fts(3) differ"); 152 (void)fts_close(fts); [all...] |
| /src/usr.bin/grep/ |
| util.c | 46 #include <fts.h> 115 FTS *fts; local 137 if (!(fts = fts_open(argv, fts_flags, NULL))) 139 while ((p = fts_read(fts)) != NULL) { 179 fts_close(fts);
|
| /src/usr.bin/du/ |
| du.c | 56 #include <fts.h> 78 FTS *fts; local 156 * Because of the way that fts(3) works, logical walks will not count 194 if ((fts = fts_open(argv, ftsoptions, NULL)) == NULL) 197 for (rval = 0; (p = fts_read(fts)) != NULL;) { 206 fts_set(fts, p, FTS_SKIP);
|
| /src/bin/rm/ |
| rm.c | 53 #include <fts.h> 161 FTS *fts; local 184 if ((fts = fts_open(argv, flags, NULL)) == NULL) 186 while ((p = fts_read(fts)) != NULL) { 218 (void)fts_set(fts, p, FTS_SKIP); 276 fts_close(fts);
|
| /src/libexec/makewhatis/ |
| makewhatis.c | 53 #include <fts.h> 246 FTS *fts; local 255 if ((fts = fts_open(manpath, FTS_LOGICAL, NULL)) == NULL) 259 while ((fe = fts_read(fts)) != NULL) { 323 errx(EXIT_FAILURE, "Unknown info %d returned from fts " 328 (void)fts_close(fts);
|
| /src/external/bsd/ntp/dist/ntpd/ |
| ntp_leapsec.c | 939 struct calendar fts; local 952 ntpcal_ntp64_to_date(&fts, now64); 956 if (fts.monthday == 1 && fts.hour == 0) { 962 fts.monthday = 1; 963 fts.hour = 0; 964 fts.minute = 0; 965 fts.second = 0; 966 starttime = ntpcal_date_to_ntp64(&fts); 967 fts.month++ 991 struct calendar fts; local [all...] |
| /src/usr.sbin/installboot/ |
| evboards.c | 48 #include <fts.h> 500 * them into the array we feed to fts. This is because we always 829 FTS *fts; local 839 fts = fts_open(paths, FTS_COMFOLLOW | FTS_LOGICAL | FTS_NOCHDIR, NULL); 840 if (fts == NULL || 841 (chp = fts_children(fts, 0)) == NULL) { 843 if (fts != NULL) 844 fts_close(fts); 848 chp = fts_children(fts, 0) [all...] |
| /src/usr.bin/gzip/ |
| gzip.c | 66 #include <fts.h> 2079 FTS *fts; local 2084 fts = fts_open(path_argv, FTS_PHYSICAL | FTS_NOCHDIR, NULL); 2085 if (fts == NULL) { 2090 while ((entry = fts_read(fts))) { 2105 (void)fts_close(fts);
|
| /src/external/gpl3/gcc/dist/gcc/fortran/ |
| check.cc | 909 gfc_typespec *fts = &f->ts; local 920 fts = &f->symtree->n.sym->ts; 923 if (gfc_compare_types (ets, fts))
|
| resolve.cc | 770 gfc_typespec *ts, *fts; local 776 fts = &ns->entries->sym->result->ts; 777 if (fts->type == BT_UNKNOWN) 778 fts = gfc_get_default_type (ns->entries->sym->result->name, NULL); 787 if (! gfc_compare_types (ts, fts) 811 else if (ts->type == BT_CHARACTER && ts->u.cl && fts->u.cl 812 && (((ts->u.cl->length && !fts->u.cl->length) 813 ||(!ts->u.cl->length && fts->u.cl->length)) 816 != fts->u.cl->length->expr_type) 820 fts->u.cl->length->value.integer) != 0)) [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/fortran/ |
| check.cc | 909 gfc_typespec *fts = &f->ts; local 920 fts = &f->symtree->n.sym->ts; 923 if (gfc_compare_types (ets, fts))
|
| resolve.cc | 775 gfc_typespec *ts, *fts; local 781 fts = &ns->entries->sym->result->ts; 782 if (fts->type == BT_UNKNOWN) 783 fts = gfc_get_default_type (ns->entries->sym->result->name, NULL); 792 if (! gfc_compare_types (ts, fts) 816 else if (ts->type == BT_CHARACTER && ts->u.cl && fts->u.cl 817 && (((ts->u.cl->length && !fts->u.cl->length) 818 ||(!ts->u.cl->length && fts->u.cl->length)) 821 != fts->u.cl->length->expr_type) 825 fts->u.cl->length->value.integer) != 0)) [all...] |