Home
last modified time | relevance | path

Searched refs:fnlp (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/cmd/logadm/
H A Dfn.c348 struct fn_list *fnlp = MALLOC(sizeof (struct fn_list)); in fn_list_new() local
350 fnlp->fnl_first = fnlp->fnl_last = fnlp->fnl_rptr = NULL; in fn_list_new()
353 fn_list_adds(fnlp, *slist++); in fn_list_new()
355 return (fnlp); in fn_list_new()
362 fn_list_dup(struct fn_list *fnlp) in fn_list_dup() argument
367 fn_list_rewind(fnlp); in fn_list_dup()
368 while ((fnp = fn_list_next(fnlp)) != NULL) in fn_list_dup()
378 fn_list_free(struct fn_list *fnlp) in fn_list_free() argument
382 fn_list_rewind(fnlp); in fn_list_free()
383 while ((fnp = fn_list_next(fnlp)) != NULL) in fn_list_free()
[all …]
H A Dfn.h56 struct fn_list *fn_list_dup(struct fn_list *fnlp);
57 void fn_list_free(struct fn_list *fnlp);
58 void fn_list_adds(struct fn_list *fnlp, const char *s);
59 void fn_list_addfn(struct fn_list *fnlp, struct fn *fnp);
60 void fn_list_rewind(struct fn_list *fnlp);
61 struct fn *fn_list_next(struct fn_list *fnlp);
62 void fn_list_addfn_list(struct fn_list *fnlp, struct fn_list *fnlp2);
63 void fn_list_appendrange(struct fn_list *fnlp,
65 void fn_list_print(struct fn_list *fnlp, FILE *stream);
66 off_t fn_list_totalsize(struct fn_list *fnlp);
[all …]
H A Dglob.c80 static struct fn_list *glob_reglob_list(struct fn_list *fnlp);
199 glob_glob_list(struct fn_list *fnlp) in glob_glob_list() argument
204 fn_list_rewind(fnlp); in glob_glob_list()
205 while ((fnp = fn_list_next(fnlp)) != NULL) in glob_glob_list()
325 glob_reglob_list(struct fn_list *fnlp) in glob_reglob_list() argument
330 fn_list_rewind(fnlp); in glob_reglob_list()
331 while ((fnp = fn_list_next(fnlp)) != NULL) in glob_reglob_list()
389 struct fn_list *fnlp; in main() local
407 fnlp = glob_reglob(argfnp); in main()
409 fnlp = glob_glob(argfnp); in main()
[all …]
H A Dglob.h37 struct fn_list *glob_glob_list(struct fn_list *fnlp);