/freebsd/usr.bin/sort/ |
H A D | file.h | 66 struct file_list struct 109 void file_list_init(struct file_list *fl, bool tmp); 110 void file_list_add(struct file_list *fl, const char *fn, bool allocate); 111 void file_list_populate(struct file_list *fl, int argc, char **argv, bool allocate); 112 void file_list_clean(struct file_list *fl); 115 void merge_files(struct file_list *fl, const char *fn_out); 118 int procfile(const char *fn, struct sort_list *list, struct file_list *fl);
|
H A D | file.c | 205 file_list_init(struct file_list *fl, bool tmp) in file_list_init() 218 file_list_add(struct file_list *fl, const char *fn, bool allocate) in file_list_add() 236 file_list_populate(struct file_list *fl, int argc, char **argv, bool allocate) in file_list_populate() 252 file_list_clean(struct file_list *fl) in file_list_clean() 725 procfile(const char *fsrc, struct sort_list *list, struct file_list *fl) in procfile() 1040 shrink_file_list(struct file_list *fl) in shrink_file_list() 1046 struct file_list new_fl; in shrink_file_list() 1085 merge_files(struct file_list *fl, const char *fn_out) in merge_files()
|
H A D | sort.c | 1269 struct file_list fl; in main() 1309 struct file_list fl; in main()
|
/freebsd/lib/libdpv/ |
H A D | dpv.c | 90 dpv(struct dpv_config *config, struct dpv_file_node *file_list) in dpv() argument 221 if (file_list == NULL || file_list->next == NULL) in dpv() 285 for (curfile = file_list; curfile != NULL; curfile = curfile->next) { in dpv() 295 if (curfile == file_list) in dpv() 353 if (dpv_nfiles <= 1 && file_list != NULL && file_list->length < 0 && in dpv() 470 if ((pprompt == NULL || *fc == '\0') && file_list != NULL) { in dpv() 471 first_file = file_list; in dpv() 483 dprompt_init(file_list); in dpv() 494 dprompt_recreate(file_list, (struct dpv_file_node *)NULL, 0); in dpv() 549 list_head = file_list; in dpv() [all …]
|
H A D | dprompt.c | 77 static int dprompt_add_files(struct dpv_file_node *file_list, 105 dprompt_init(struct dpv_file_node *file_list) in dprompt_init() argument 165 for (curfile = file_list; curfile != NULL; in dprompt_init() 374 dprompt_add_files(struct dpv_file_node *file_list, in dprompt_add_files() argument 446 for (fp = file_list; fp != NULL; fp = fp->next) { in dprompt_add_files() 671 dprompt_recreate(struct dpv_file_node *file_list, in dprompt_recreate() argument 681 dprompt_add_files(file_list, curfile, pct); in dprompt_recreate()
|
/freebsd/usr.sbin/config/ |
H A D | mkmakefile.cc | 82 static struct file_list * 85 struct file_list *fp; in fl_lookup() 97 static struct file_list * 100 struct file_list *fp; in new_fent() 102 fp = (struct file_list *) calloc(1, sizeof *fp); in new_fent() 384 struct file_list *tp; in read_file() 640 struct file_list *tp; in do_before_depend() 665 struct file_list *tp; in do_objs() 694 struct file_list *tp; in do_xxfiles() 746 struct file_list *ftp; in do_rules() [all …]
|
H A D | config.h | 103 struct file_list { struct 104 STAILQ_ENTRY(file_list) f_next; 260 extern STAILQ_HEAD(file_list_head, file_list) ftab;
|
H A D | config.y | 4 struct file_list *file;
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_write_set_format_7zip.c | 233 } file_list, empty_list; member 763 *zip->file_list.last = zip->empty_list.first; in _7z_close() 764 zip->file_list.last = zip->empty_list.last; in _7z_close() 932 file = zip->file_list.first; in make_substreamsInfo() 955 file = zip->file_list.first; in make_substreamsInfo() 1012 struct file *file = zip->file_list.first; in make_streamsInfo() 1109 struct file *file = zip->file_list.first; in make_streamsInfo() 1227 file = zip->file_list.first; in make_time() 1256 file = zip->file_list.first; in make_time() 1327 file = zip->file_list.first; in make_header() [all …]
|
H A D | archive_write_set_format_xar.c | 224 } file_list; member 265 } file_list; member 2431 *xar->file_list.last = file; in file_register() 2432 xar->file_list.last = &(file->next); in file_register() 2438 xar->file_list.first = NULL; in file_init_register() 2439 xar->file_list.last = &(xar->file_list.first); in file_init_register() 2447 file = xar->file_list.first; in file_free_register() 2478 hl->file_list.first = file; in file_register_hardlink() 2479 hl->file_list.last = &(file->hlnext); in file_register_hardlink() 2488 *hl->file_list.last = file; in file_register_hardlink() [all …]
|
H A D | archive_write_set_format_mtree.c | 124 struct mtree_chain file_list; 1913 *mtree->file_list.last = file; in mtree_entry_register_add() 1914 mtree->file_list.last = &(file->next); in mtree_entry_register_add() 1920 mtree->file_list.first = NULL; in mtree_entry_register_init() 1921 mtree->file_list.last = &(mtree->file_list.first); in mtree_entry_register_init() 1929 file = mtree->file_list.first; in mtree_entry_register_free() 125 struct mtree_chain file_list; global() member
|
/freebsd/usr.bin/dpv/ |
H A D | dpv.c | 51 static struct dpv_file_node *file_list = NULL; variable 405 for (curfile = file_list; n < argc; n++) { in main() 413 file_list = curfile; in main() 468 if (dpv(config, file_list) != 0 && debug) in main()
|
/freebsd/stand/libsa/ |
H A D | closeall.c | 40 while ((f = TAILQ_LAST(&files, file_list)) != NULL) { in closeall()
|
H A D | close.c | 91 TAILQ_FOREACH_REVERSE_SAFE(last, &files, file_list, f_link, f) { in close()
|
H A D | open.c | 118 last = TAILQ_LAST(&files, file_list); in o_gethandle()
|
H A D | stand.h | 212 typedef TAILQ_HEAD(file_list, open_file) file_list_t;
|
/freebsd/sys/ofed/drivers/infiniband/core/ |
H A D | ib_ucm.c | 89 struct list_head file_list; /* member in file ctx list */ member 94 struct list_head file_list; /* member in file event list */ member 159 list_del(&ctx->file_list); in ib_ucm_cleanup_events() 164 list_del(&uevent->file_list); in ib_ucm_cleanup_events() 197 list_add_tail(&ctx->file_list, &file->ctxs); in ib_ucm_ctx_alloc() 373 list_add_tail(&uevent->file_list, &ctx->file->events); in ib_ucm_event_handler() 415 uevent = list_entry(file->events.next, struct ib_ucm_event, file_list); in ib_ucm_event() 459 list_del(&uevent->file_list); in ib_ucm_event() 1182 struct ib_ucm_context, file_list); in ib_ucm_close()
|
H A D | ib_user_mad.c | 95 struct list_head file_list; member 961 list_add_tail(&file->port_list, &port->file_list); in ib_umad_open() 1188 INIT_LIST_HEAD(&port->file_list); in ib_umad_init_port() 1266 list_for_each_entry(file, &port->file_list, port_list) { in ib_umad_kill_port()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Placeholder/ |
H A D | ObjectFilePlaceholder.h | 40 uint32_t GetDependentModules(lldb_private::FileSpecList &file_list) override { in GetDependentModules() argument
|
/freebsd/usr.sbin/bsdconfig/dot/ |
H A D | dot | 446 file_list=$( 459 for file in $file_list; do
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | SearchFilter.cpp | 186 FileSpecList &file_list) { in SerializeFileSpecList() argument 187 size_t num_modules = file_list.GetSize(); in SerializeFileSpecList() 196 file_list.GetFileSpecAtIndex(i).GetPath())); in SerializeFileSpecList()
|
/freebsd/sbin/rcorder/ |
H A D | rcorder.c | 84 static char **file_list; variable 208 file_list = argv; in main() 639 crunch_file(file_list[i]); in crunch_all_files()
|
/freebsd/sys/contrib/openzfs/scripts/ |
H A D | zfs-tests.sh | 260 file_list="$2" 264 for i in $file_list; do
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | SearchFilter.h | 255 OptionNames name, FileSpecList &file_list);
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | ObjectFile.h | 249 virtual uint32_t GetDependentModules(FileSpecList &file_list) = 0;
|