Home
last modified time | relevance | path

Searched refs:filelist (Results 1 – 25 of 65) sorted by relevance

123

/netbsd-src/external/gpl2/xcvs/dist/maint-aux/
H A Dgnulib-update79 $GNULIB_TOOL --extract-filelist $MODULES |sort |uniq |sed '/^$/d' \
80 >maint-aux/gnulib-filelist.new
83 if cmp maint-aux/gnulib-filelist.txt maint-aux/gnulib-filelist.new >/dev/null
86 rm maint-aux/gnulib-filelist.new
91 CVS. Use `cvs diff maint-aux/gnulib-filelist.txt' to view changes.
H A DMakefile.am19 gnulib-filelist.txt \
/netbsd-src/usr.bin/sort/
H A Dfsort.c82 fsort(struct filelist *filelist, int nfiles, FILE *outfp, struct field *ftbl) in fsort() argument
113 fp = fopen(filelist->names[0], "r"); in fsort()
115 err(2, "%s", filelist->names[0]); in fsort()
144 fp = fopen(filelist->names[file_no], "r"); in fsort()
146 err(2, "%s", filelist->names[file_no]); in fsort()
H A Dsort.c124 struct filelist filelist; in main() local
306 filelist.names = names; in main()
309 filelist.names = (const char * const *) &argv[optind]; in main()
314 order(&filelist, fldtab, mode == 'C'); in main()
353 fmerge(&filelist, num_input_files, outfp, fldtab); in main()
355 fsort(&filelist, num_input_files, outfp, fldtab); in main()
H A Dmsort.c136 fmerge(struct filelist *filelist, int nfiles, FILE *outfp, struct field *ftbl) in fmerge() argument
143 fp = fopen(filelist->names[i], "r"); in fmerge()
145 err(2, "%s", filelist->names[i]); in fmerge()
368 order(struct filelist *filelist, struct field *ftbl, int quiet) in order() argument
376 fp = fopen(filelist->names[0], "r"); in order()
378 err(2, "%s", filelist->names[0]); in order()
H A Dsort.h158 struct filelist { struct
185 void fmerge(struct filelist *, int, FILE *, struct field *);
188 void fsort(struct filelist *, int, FILE *, struct field *);
194 __dead void order(struct filelist *, struct field *, int);
/netbsd-src/crypto/external/bsd/openssl.old/dist/util/
H A Dcopy.pl38 push @filelist, $f unless grep { $f =~ /$_/ } @excludes;
42 $fnum = @filelist;
49 $dest = pop @filelist;
56 foreach (@filelist)
/netbsd-src/crypto/external/bsd/openssl/dist/util/
H A Dcopy.pl38 push @filelist, $f unless grep { $f =~ /$_/ } @excludes;
42 $fnum = @filelist;
49 $dest = pop @filelist;
56 foreach (@filelist)
/netbsd-src/sys/arch/vax/boot/boot/
H A Dboot.c80 } filelist[] = { variable
134 for (fileindex = 0; filelist[fileindex].name[0] != '\0'; in Xmain()
137 if (!filelist[fileindex].quiet) in Xmain()
138 printf("> boot %s\n", filelist[fileindex].name); in Xmain()
140 fd = loadfile(filelist[fileindex].name, marks, in Xmain()
150 if (!filelist[fileindex].quiet) in Xmain()
152 filelist[fileindex].name, strerror(errno)); in Xmain()
/netbsd-src/external/gpl2/xcvs/dist/src/
H A Drecurse.c32 static List *filelist = NULL; /* holds list of files on which to operate */ variable
245 if (filelist) in start_recursion()
246 dellist (&filelist); /* FIXME-krp: no longer correct. */ in start_recursion()
748 if (dirlist != NULL && filelist == NULL) in do_recursion()
756 if (filelist == NULL && dirlist == NULL) in do_recursion()
784 filelist = Find_Names (repository, lwhich, frame->aflag, in do_recursion()
786 if (filelist == NULL) in do_recursion()
806 if (filelist != NULL && frame->fileproc != NULL) in do_recursion()
817 if (process_this_directory && filelist != NULL && frame->fileproc) in do_recursion()
852 err += walklist (filelist, do_file_proc, &frfile); in do_recursion()
[all …]
H A Dmkmodules.c684 static const struct admin_file filelist[] = { variable
831 for (fileptr = filelist; fileptr && fileptr->filename; fileptr++) { in mkmodules()
1297 for (fileptr = filelist; fileptr && fileptr->filename; ++fileptr) in init()
H A Dfind_names.c44 List *filelist = closure; in add_entries_proc() local
53 if (addnode (filelist, fnode) != 0) in add_entries_proc()
/netbsd-src/usr.sbin/rbootd/
H A Drmpproto.c227 SendFileNo(struct rmp_packet *req, RMPCONN *rconn, char *filelist[]) in SendFileNo() argument
255 if (i < C_MAXFILE && filelist[i] != NULL) { in SendFileNo()
256 src = filelist[i]; in SendFileNo()
287 SendBootRepl(struct rmp_packet *req, RMPCONN *rconn, char *filelist[]) in SendBootRepl() argument
326 src = filelist[0]; in SendBootRepl()
349 for (i = 0; i < C_MAXFILE && filelist[i] != NULL; i++) in SendBootRepl()
350 if (STREQN(filename, filelist[i])) in SendBootRepl()
/netbsd-src/crypto/dist/ipsec-tools/misc/
H A Dcvs2cl.pl667 my ($filelist, $qunk);
695 $filelist .= "\tDeleted:\n";
697 $filelist .= "\t\t" . $qunk->filename;
698 $filelist .= " (" . $qunk->revision . ")";
699 $filelist .= "\n";
705 $filelist .= "\tAdded:\n";
707 $filelist .= "\t\t" . $qunk->filename;
708 $filelist .= " (" . $qunk->revision . ")";
709 $filelist .= "\n";
715 $filelist .= "\tChanged:\n";
[all …]
/netbsd-src/usr.bin/config/
H A Ddefs.h160 TAILQ_HEAD(filelist, files);
171 struct filelist m_files;
508 extern struct filelist allfiles; /* list of all kernel source files */
509 extern struct filelist allcfiles; /* list of all .c files */
510 extern struct filelist allsfiles; /* list of all .S files */
511 extern struct filelist allofiles; /* list of all .o files */
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/krb5/
H A Dtest_config.c40 check_config_file(krb5_context context, char *filelist, char **res, int def) in check_config_file() argument
49 ret = krb5_prepend_config_files_default(filelist, &pp); in check_config_file()
51 ret = krb5_prepend_config_files(filelist, NULL, &pp); in check_config_file()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/sancov/
H A Dcoverage-report-server.py138 filelist = []
143 filelist.append(
150 filenames='\n'.join(filelist))
/netbsd-src/external/gpl3/gcc.old/dist/contrib/
H A Dcompare_two_ftime_report_sets553 def extract_times_for_timevar_logs(filelist, pattern): argument
554 for filename in filelist:
564 filelist = match_files(fileglob)
565 values = extract_times_for_timevar_logs(filelist, pattern)
/netbsd-src/external/gpl3/gcc/dist/contrib/
H A Dcompare_two_ftime_report_sets553 def extract_times_for_timevar_logs(filelist, pattern): argument
554 for filename in filelist:
564 filelist = match_files(fileglob)
565 values = extract_times_for_timevar_logs(filelist, pattern)
/netbsd-src/external/gpl2/gmake/dist/
H A Dmakefile.com69 $ filelist = "alloca ar arscan commands default dir expand file function " + -
77 $ cfile = f$elem(n," ",filelist)
/netbsd-src/lib/libkvm/
H A Dkvm_file.c86 struct filelist fhead; in kvm_deadfiles()
131 struct filelist fhead; in kvm_getfiles()
/netbsd-src/sys/sys/
H A Dfile.h204 LIST_HEAD(filelist, file);
205 extern struct filelist filehead; /* head of list of open files */
/netbsd-src/external/gpl3/binutils.old/dist/ld/emultempl/
H A Daix.em109 struct filelist
111 struct filelist *next;
116 static struct filelist *import_files;
513 struct filelist *n;
514 struct filelist **flpp;
516 n = (struct filelist *) xmalloc (sizeof (struct filelist));
674 struct filelist *n;
675 struct filelist **flpp;
677 n = (struct filelist *) xmalloc (sizeof (struct filelist));
747 struct filelist *fl;
/netbsd-src/external/gpl3/binutils/dist/ld/emultempl/
H A Daix.em109 struct filelist
111 struct filelist *next;
116 static struct filelist *import_files;
513 struct filelist *n;
514 struct filelist **flpp;
516 n = (struct filelist *) xmalloc (sizeof (struct filelist));
674 struct filelist *n;
675 struct filelist **flpp;
677 n = (struct filelist *) xmalloc (sizeof (struct filelist));
747 struct filelist *fl;
/netbsd-src/sys/external/bsd/drm2/dist/include/drm/
H A Ddrm_device.h160 struct list_head filelist; member

123