Symbol: flist
sys/dev/pci/drm/drm_suballoc.c
124
list_del_init(&sa->flist);
sys/dev/pci/drm/drm_suballoc.c
181
INIT_LIST_HEAD(&sa->flist);
sys/dev/pci/drm/drm_suballoc.c
195
if (!list_empty(&sa_manager->flist[i]))
sys/dev/pci/drm/drm_suballoc.c
252
if (list_empty(&sa_manager->flist[i]))
sys/dev/pci/drm/drm_suballoc.c
255
sa = list_first_entry(&sa_manager->flist[i],
sys/dev/pci/drm/drm_suballoc.c
256
struct drm_suballoc, flist);
sys/dev/pci/drm/drm_suballoc.c
338
INIT_LIST_HEAD(&sa->flist);
sys/dev/pci/drm/drm_suballoc.c
416
list_add_tail(&suballoc->flist, &sa_manager->flist[idx]);
sys/dev/pci/drm/drm_suballoc.c
83
INIT_LIST_HEAD(&sa_manager->flist[i]);
sys/dev/pci/drm/include/drm/drm_suballoc.h
28
struct list_head flist[DRM_SUBALLOC_MAX_QUEUES];
sys/dev/pci/drm/include/drm/drm_suballoc.h
44
struct list_head flist;
usr.bin/cvs/add.c
394
TAILQ_INSERT_TAIL(&files_info, fi, flist);
usr.bin/cvs/commit.c
169
flist);
usr.bin/cvs/commit.c
660
TAILQ_INSERT_TAIL(&files_info, fi, flist);
usr.bin/cvs/file.c
87
RB_GENERATE(cvs_flisthead, cvs_filelist, flist, cvs_filelist_cmp);
usr.bin/cvs/file.h
80
RB_ENTRY(cvs_filelist) flist;
usr.bin/cvs/file.h
87
RB_PROTOTYPE(cvs_flisthead, cvs_filelist, flist, cvs_filelist_cmp);
usr.bin/cvs/logmsg.c
133
TAILQ_FOREACH(line, line_list, flist) {
usr.bin/cvs/logmsg.c
343
TAILQ_INSERT_TAIL(&files_info, fi, flist);
usr.bin/cvs/tag.c
312
TAILQ_INSERT_TAIL(&tag_files_info, fi, flist);
usr.bin/cvs/trigger.c
165
fi = TAILQ_NEXT(fi, flist);
usr.bin/cvs/trigger.c
352
TAILQ_FOREACH(line, list, flist) {
usr.bin/cvs/trigger.c
442
TAILQ_INSERT_TAIL(list, tline, flist);
usr.bin/cvs/trigger.c
455
TAILQ_INSERT_HEAD(list, tline, flist);
usr.bin/cvs/trigger.c
467
TAILQ_INSERT_HEAD(list, tline, flist);
usr.bin/cvs/trigger.c
497
TAILQ_REMOVE(list, line, flist);
usr.bin/cvs/trigger.c
511
TAILQ_REMOVE(list, fi, flist);
usr.bin/cvs/trigger.h
28
TAILQ_ENTRY(trigger_line) flist;
usr.bin/cvs/trigger.h
42
TAILQ_ENTRY(file_info) flist;
usr.bin/gprof/arcs.c
820
if ( onlist( flist , childp -> name )
usr.bin/gprof/arcs.c
830
if ( ( !onlist( flist , childp -> name ) )
usr.bin/gprof/gprof.c
138
addlist( flist , *argv );
usr.bin/gprof/gprof.c
142
addlist( flist , *++argv );
usr.bin/gprof/gprof.h
224
extern struct stringlist *flist;
usr.bin/gprof/printlist.c
48
struct stringlist *flist = &fhead;
usr.bin/rsync/copy.c
68
copy_file(int rootfd, const char *basedir_abs, const struct flist *f)
usr.bin/rsync/downloader.c
175
const struct flist *fl, size_t flsz, int rootfd)
usr.bin/rsync/downloader.c
299
const struct flist *f;
usr.bin/rsync/downloader.c
64
const struct flist *fl; /* file list */
usr.bin/rsync/downloader.c
79
const struct download *dl, const struct flist *f)
usr.bin/rsync/extern.h
316
int flist_del(struct sess *, int, const struct flist *, size_t);
usr.bin/rsync/extern.h
317
int flist_gen(struct sess *, size_t, char **, struct flist **, size_t *);
usr.bin/rsync/extern.h
318
void flist_free(struct flist *, size_t);
usr.bin/rsync/extern.h
319
int flist_recv(struct sess *, int, struct flist **, size_t *);
usr.bin/rsync/extern.h
320
int flist_send(struct sess *, int, int, const struct flist *, size_t);
usr.bin/rsync/extern.h
321
int flist_gen_dels(struct sess *, const char *, struct flist **, size_t *,
usr.bin/rsync/extern.h
322
const struct flist *, size_t);
usr.bin/rsync/extern.h
363
int rsync_set_metadata(struct sess *, int, int, const struct flist *,
usr.bin/rsync/extern.h
365
int rsync_set_metadata_at(struct sess *, int, int, const struct flist *,
usr.bin/rsync/extern.h
370
struct download *download_alloc(struct sess *, int, const struct flist *,
usr.bin/rsync/extern.h
374
const struct flist *, size_t, mode_t);
usr.bin/rsync/extern.h
397
void copy_file(int, const char *, const struct flist *);
usr.bin/rsync/extern.h
423
void idents_assign_gid(struct sess *, struct flist *, size_t,
usr.bin/rsync/extern.h
425
void idents_assign_uid(struct sess *, struct flist *, size_t,
usr.bin/rsync/flist.c
1021
flist_gen_dirs(struct sess *sess, size_t argc, char **argv, struct flist **flp,
usr.bin/rsync/flist.c
1050
struct flist **flp, size_t *sz)
usr.bin/rsync/flist.c
1052
struct flist *fl = NULL, *f;
usr.bin/rsync/flist.c
1058
if ((fl = calloc(argc, sizeof(struct flist))) == NULL) {
usr.bin/rsync/flist.c
1128
flist_gen(struct sess *sess, size_t argc, char **argv, struct flist **flp,
usr.bin/rsync/flist.c
1143
qsort(*flp, *sz, sizeof(struct flist), flist_cmp);
usr.bin/rsync/flist.c
1166
flist_gen_dels(struct sess *sess, const char *root, struct flist **fl,
usr.bin/rsync/flist.c
1167
size_t *sz, const struct flist *wfl, size_t wflsz)
usr.bin/rsync/flist.c
1173
struct flist *f;
usr.bin/rsync/flist.c
1359
qsort(*fl, *sz, sizeof(struct flist), flist_cmp);
usr.bin/rsync/flist.c
1378
flist_del(struct sess *sess, int root, const struct flist *fl, size_t flsz)
usr.bin/rsync/flist.c
153
flist_topdirs(struct sess *sess, struct flist *fl, size_t flsz)
usr.bin/rsync/flist.c
224
flist_copy_stat(struct flist *f, const struct stat *st)
usr.bin/rsync/flist.c
235
flist_free(struct flist *f, size_t sz)
usr.bin/rsync/flist.c
256
flist_send(struct sess *sess, int fdin, int fdout, const struct flist *fl,
usr.bin/rsync/flist.c
261
const struct flist *f;
usr.bin/rsync/flist.c
430
flist_recv_name(struct sess *sess, int fd, struct flist *f, uint8_t flags,
usr.bin/rsync/flist.c
517
flist_realloc(struct flist **fl, size_t *sz, size_t *max)
usr.bin/rsync/flist.c
527
*max + FLIST_CHUNK_SIZE, sizeof(struct flist));
usr.bin/rsync/flist.c
544
flist_append(struct flist *f, struct stat *st, const char *path)
usr.bin/rsync/flist.c
589
flist_recv(struct sess *sess, int fd, struct flist **flp, size_t *sz)
usr.bin/rsync/flist.c
591
struct flist *fl = NULL;
usr.bin/rsync/flist.c
592
struct flist *ff;
usr.bin/rsync/flist.c
593
const struct flist *fflast = NULL;
usr.bin/rsync/flist.c
61
const struct flist *f1 = p1, *f2 = p2;
usr.bin/rsync/flist.c
71
flist_dedupe(struct flist **fl, size_t *sz)
usr.bin/rsync/flist.c
74
struct flist *new;
usr.bin/rsync/flist.c
75
struct flist *f, *fnext;
usr.bin/rsync/flist.c
761
qsort(fl, flsz, sizeof(struct flist), flist_cmp);
usr.bin/rsync/flist.c
797
flist_gen_dirent(struct sess *sess, char *root, struct flist **fl, size_t *sz,
usr.bin/rsync/flist.c
804
struct flist *f;
usr.bin/rsync/flist.c
82
new = calloc(*sz, sizeof(struct flist));
usr.bin/rsync/ids.c
52
idents_assign_gid(struct sess *sess, struct flist *fl, size_t flsz,
usr.bin/rsync/ids.c
74
idents_assign_uid(struct sess *sess, struct flist *fl, size_t flsz,
usr.bin/rsync/receiver.c
108
const struct flist *f, const char *path)
usr.bin/rsync/receiver.c
175
struct flist *fl = NULL, *dfl = NULL;
usr.bin/rsync/receiver.c
47
int fd, const struct flist *f, const char *path)
usr.bin/rsync/sender.c
102
const struct flist *fl)
usr.bin/rsync/sender.c
284
int32_t idx, const struct flist *fl, size_t flsz, int fd)
usr.bin/rsync/sender.c
359
struct flist *fl = NULL;
usr.bin/rsync/sender.c
360
const struct flist *f;
usr.bin/rsync/uploader.c
173
const struct flist *f;
usr.bin/rsync/uploader.c
278
const struct flist *f;
usr.bin/rsync/uploader.c
367
const struct flist *f;
usr.bin/rsync/uploader.c
444
const struct flist *f;
usr.bin/rsync/uploader.c
522
const struct flist *f;
usr.bin/rsync/uploader.c
57
const struct flist *fl; /* file list */
usr.bin/rsync/uploader.c
584
const struct flist *f;
usr.bin/rsync/uploader.c
657
check_file(int rootfd, const struct flist *f, struct stat *st,
usr.bin/rsync/uploader.c
67
log_dir(struct sess *sess, const struct flist *f)
usr.bin/rsync/uploader.c
701
const struct flist *f;
usr.bin/rsync/uploader.c
810
size_t clen, const struct flist *fl, size_t flsz, mode_t msk)
usr.bin/rsync/uploader.c
83
log_symlink(struct sess *sess, const struct flist *f)
usr.bin/rsync/uploader.c
94
log_file(struct sess *sess, const struct flist *f)