HomeSort by: relevance | last modified time | path
    Searched refs:filelist (Results 1 - 17 of 17) sorted by relevancy

  /src/usr.bin/sort/
fsort.c 82 fsort(struct filelist *filelist, int nfiles, FILE *outfp, struct field *ftbl)
113 fp = fopen(filelist->names[0], "r");
115 err(2, "%s", filelist->names[0]);
144 fp = fopen(filelist->names[file_no], "r");
146 err(2, "%s", filelist->names[file_no]);
sort.h 158 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);
sort.c 124 struct filelist filelist; local in function:main
306 filelist.names = names;
309 filelist.names = (const char * const *) &argv[optind];
314 order(&filelist, fldtab, mode == 'C');
353 fmerge(&filelist, num_input_files, outfp, fldtab);
355 fsort(&filelist, num_input_files, outfp, fldtab);
msort.c 136 fmerge(struct filelist *filelist, int nfiles, FILE *outfp, struct field *ftbl)
143 fp = fopen(filelist->names[i], "r");
145 err(2, "%s", filelist->names[i]);
368 order(struct filelist *filelist, struct field *ftbl, int quiet)
376 fp = fopen(filelist->names[0], "r");
378 err(2, "%s", filelist->names[0]);
  /src/sys/arch/vax/boot/boot/
boot.c 80 } filelist[] = { variable in typeref:struct:__anon74b1d6710108[]
134 for (fileindex = 0; filelist[fileindex].name[0] != '\0';
137 if (!filelist[fileindex].quiet)
138 printf("> boot %s\n", filelist[fileindex].name);
140 fd = loadfile(filelist[fileindex].name, marks,
150 if (!filelist[fileindex].quiet)
152 filelist[fileindex].name, strerror(errno));
  /src/usr.sbin/rbootd/
rmpproto.c 218 ** filelist - list of files available to the requester.
227 SendFileNo(struct rmp_packet *req, RMPCONN *rconn, char *filelist[])
255 if (i < C_MAXFILE && filelist[i] != NULL) {
256 src = filelist[i];
278 ** filelist - list of files available to the requester.
287 SendBootRepl(struct rmp_packet *req, RMPCONN *rconn, char *filelist[])
326 src = filelist[0];
349 for (i = 0; i < C_MAXFILE && filelist[i] != NULL; i++)
350 if (STREQN(filename, filelist[i]))
  /src/usr.bin/config/
defs.h 160 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 */
main.c 151 struct filelist allfiles; /* list of all kernel source files */
152 struct filelist allcfiles; /* list of all .c files */
153 struct filelist allsfiles; /* list of all .S files */
154 struct filelist allofiles; /* list of all .o files */
711 mksubdirs(struct filelist *fl)
  /src/lib/libkvm/
kvm_file.c 86 struct filelist fhead;
131 struct filelist fhead;
  /src/sys/sys/
file.h 204 LIST_HEAD(filelist, file);
205 extern struct filelist filehead; /* head of list of open files */
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_device.h 153 /** @filelist_mutex: Protects @filelist. */
156 * @filelist:
160 struct list_head filelist; member in struct:drm_device
  /src/sys/external/bsd/drm2/dist/drm/
drm_debugfs.c 93 /* dev->filelist is sorted youngest first, but we want to present
97 list_for_each_entry_reverse(priv, &dev->filelist, lhead) {
drm_file.c 385 list_add(&priv->lhead, &dev->filelist);
drm_drv.c 688 INIT_LIST_HEAD(&dev->filelist);
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_gem.c 107 list_for_each_entry(file, &ddev->filelist, lhead) {
901 list_for_each_entry(file, &dev->filelist, lhead) {
  /src/sys/external/bsd/drm2/drm/
drm_cdevsw.c 183 list_add(&priv->lhead, &dev->filelist);
  /src/sys/kern/
kern_descrip.c 103 struct filelist filehead __cacheline_aligned;
2088 struct filelist flist;

Completed in 49 milliseconds