| /openbsd/src/usr.bin/rsync/ |
| D | extern.h | 123 struct flist { struct 315 int flist_del(struct sess *, int, const struct flist *, size_t); 316 int flist_gen(struct sess *, size_t, char **, struct flist **, size_t *); 317 void flist_free(struct flist *, size_t); 318 int flist_recv(struct sess *, int, struct flist **, size_t *); 319 int flist_send(struct sess *, int, int, const struct flist *, size_t); 320 int flist_gen_dels(struct sess *, const char *, struct flist **, size_t *, 321 const struct flist *, size_t); 362 int rsync_set_metadata(struct sess *, int, int, const struct flist *, 364 int rsync_set_metadata_at(struct sess *, int, int, const struct flist *, [all …]
|
| D | flist.c | 61 const struct flist *f1 = p1, *f2 = p2; in flist_cmp() 71 flist_dedupe(struct flist **fl, size_t *sz) in flist_dedupe() 74 struct flist *new; in flist_dedupe() 75 struct flist *f, *fnext; in flist_dedupe() 82 new = calloc(*sz, sizeof(struct flist)); in flist_dedupe() 153 flist_topdirs(struct sess *sess, struct flist *fl, size_t flsz) in flist_topdirs() 224 flist_copy_stat(struct flist *f, const struct stat *st) in flist_copy_stat() 235 flist_free(struct flist *f, size_t sz) in flist_free() 256 flist_send(struct sess *sess, int fdin, int fdout, const struct flist *fl, in flist_send() 261 const struct flist *f; in flist_send() [all …]
|
| D | uploader.c | 57 const struct flist *fl; /* file list */ 67 log_dir(struct sess *sess, const struct flist *f) in log_dir() 83 log_symlink(struct sess *sess, const struct flist *f) in log_symlink() 94 log_file(struct sess *sess, const struct flist *f) in log_file() 173 const struct flist *f; in pre_symlink() 278 const struct flist *f; in pre_dev() 367 const struct flist *f; in pre_fifo() 444 const struct flist *f; in pre_sock() 522 const struct flist *f; in pre_dir() 584 const struct flist *f; in post_dir() [all …]
|
| D | downloader.c | 64 const struct flist *fl; /* file list */ 79 const struct download *dl, const struct flist *f) in log_file() 175 const struct flist *fl, size_t flsz, int rootfd) in download_alloc() 299 const struct flist *f; in rsync_downloader()
|
| D | receiver.c | 47 int fd, const struct flist *f, const char *path) in rsync_set_metadata() 108 const struct flist *f, const char *path) in rsync_set_metadata_at() 175 struct flist *fl = NULL, *dfl = NULL; in rsync_receiver()
|
| D | sender.c | 102 const struct flist *fl) in send_up_fsm() 284 int32_t idx, const struct flist *fl, size_t flsz, int fd) in send_dl_enqueue() 359 struct flist *fl = NULL; in rsync_sender() 360 const struct flist *f; in rsync_sender()
|
| D | ids.c | 52 idents_assign_gid(struct sess *sess, struct flist *fl, size_t flsz, in idents_assign_gid() 74 idents_assign_uid(struct sess *sess, struct flist *fl, size_t flsz, in idents_assign_uid()
|
| D | Makefile | 4 SRCS= blocks.c client.c copy.c downloader.c fargs.c flist.c hash.c ids.c \
|
| D | copy.c | 68 copy_file(int rootfd, const char *basedir, const struct flist *f) in copy_file()
|
| /openbsd/src/sys/dev/pci/drm/ |
| D | drm_suballoc.c | 81 INIT_LIST_HEAD(&sa_manager->flist[i]); in drm_suballoc_manager_init() 122 list_del_init(&sa->flist); in drm_suballoc_remove_locked() 179 INIT_LIST_HEAD(&sa->flist); in drm_suballoc_try_alloc() 193 if (!list_empty(&sa_manager->flist[i])) in __drm_suballoc_event() 250 if (list_empty(&sa_manager->flist[i])) in drm_suballoc_next_hole() 253 sa = list_first_entry(&sa_manager->flist[i], in drm_suballoc_next_hole() 254 struct drm_suballoc, flist); in drm_suballoc_next_hole() 336 INIT_LIST_HEAD(&sa->flist); in drm_suballoc_new() 414 list_add_tail(&suballoc->flist, &sa_manager->flist[idx]); in drm_suballoc_free()
|
| /openbsd/src/usr.bin/cvs/ |
| D | trigger.c | 165 fi = TAILQ_NEXT(fi, flist); in expand_args() 352 TAILQ_FOREACH(line, list, flist) { in cvs_trigger_handle() 442 TAILQ_INSERT_TAIL(list, tline, flist); in cvs_trigger_getlines() 455 TAILQ_INSERT_HEAD(list, tline, flist); in cvs_trigger_getlines() 467 TAILQ_INSERT_HEAD(list, tline, flist); in cvs_trigger_getlines() 497 TAILQ_REMOVE(list, line, flist); in cvs_trigger_freelist() 511 TAILQ_REMOVE(list, fi, flist); in cvs_trigger_freeinfo()
|
| D | trigger.h | 28 TAILQ_ENTRY(trigger_line) flist; 42 TAILQ_ENTRY(file_info) flist;
|
| D | file.h | 80 RB_ENTRY(cvs_filelist) flist; 87 RB_PROTOTYPE(cvs_flisthead, cvs_filelist, flist, cvs_filelist_cmp);
|
| D | logmsg.c | 133 TAILQ_FOREACH(line, line_list, flist) { in cvs_logmsg_create() 343 TAILQ_INSERT_TAIL(&files_info, fi, flist); in cvs_logmsg_verify()
|
| D | commit.c | 169 flist); in cvs_commit() 660 TAILQ_INSERT_TAIL(&files_info, fi, flist); in cvs_commit_local()
|
| D | tag.c | 312 TAILQ_INSERT_TAIL(&tag_files_info, fi, flist); in cvs_tag_check_files()
|
| /openbsd/src/sys/dev/pci/drm/include/drm/ |
| D | drm_suballoc.h | 28 struct list_head flist[DRM_SUBALLOC_MAX_QUEUES]; member 44 struct list_head flist; member
|
| /openbsd/src/gnu/usr.bin/perl/t/op/ |
| D | try.t | 189 sub flist :lvalue 195 (flist) = (4, 5, 6);
|
| /openbsd/src/usr.bin/gprof/ |
| D | printlist.c | 48 struct stringlist *flist = &fhead; variable
|
| D | gprof.c | 138 addlist( flist , *argv ); in main() 142 addlist( flist , *++argv ); in main()
|
| D | gprof.h | 224 extern struct stringlist *flist;
|
| D | arcs.c | 820 if ( onlist( flist , childp -> name ) in doflags() 830 if ( ( !onlist( flist , childp -> name ) ) in doflags()
|
| /openbsd/src/gnu/gcc/gcc/ |
| D | gengtype.c | 1355 struct flist { struct 1356 struct flist *next; argument 1406 static void finish_root_table (struct flist *flp, const char *pfx, 2501 finish_root_table (struct flist *flp, const char *pfx, const char *lastname, in finish_root_table() 2504 struct flist *fli2; in finish_root_table() 2784 struct flist *flp = NULL; in write_roots() 2789 struct flist *fli; in write_roots() 2817 fli = XNEW (struct flist); in write_roots() 2841 struct flist *fli; in write_roots() 2877 struct flist *fli; in write_roots() [all …]
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/ |
| D | gengtype.c | 1360 struct flist { struct 1361 struct flist *next; argument 1379 static void finish_root_table PARAMS ((struct flist *flp, const char *pfx, argument 2124 struct flist *flp; in finish_root_table() 2130 struct flist *fli2; 2354 struct flist *flp = NULL; 2359 struct flist *fli; 2455 struct flist *fli; 2491 struct flist *fli; 2526 struct flist *fli;
|
| /openbsd/src/gnu/usr.bin/perl/cpan/Encode/bin/ |
| D | enc2xs | 207 my $flist = $opt{f}; 208 open(FLIST,$flist) || die "Cannot open $flist:$!";
|