Home
last modified time | relevance | path

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

/titanic_41/usr/src/cmd/logadm/
H A Dfn.c350 struct fn_list *fnlp = MALLOC(sizeof (struct fn_list)); in fn_list_new() local
352 fnlp->fnl_first = fnlp->fnl_last = fnlp->fnl_rptr = NULL; in fn_list_new()
355 fn_list_adds(fnlp, *slist++); in fn_list_new()
357 return (fnlp); in fn_list_new()
364 fn_list_dup(struct fn_list *fnlp) in fn_list_dup() argument
369 fn_list_rewind(fnlp); in fn_list_dup()
370 while ((fnp = fn_list_next(fnlp)) != NULL) in fn_list_dup()
380 fn_list_free(struct fn_list *fnlp) in fn_list_free() argument
384 fn_list_rewind(fnlp); in fn_list_free()
385 while ((fnp = fn_list_next(fnlp)) != NULL) in fn_list_free()
[all …]
H A Dfn.h58 struct fn_list *fn_list_dup(struct fn_list *fnlp);
59 void fn_list_free(struct fn_list *fnlp);
60 void fn_list_adds(struct fn_list *fnlp, const char *s);
61 void fn_list_addfn(struct fn_list *fnlp, struct fn *fnp);
62 void fn_list_rewind(struct fn_list *fnlp);
63 struct fn *fn_list_next(struct fn_list *fnlp);
64 void fn_list_addfn_list(struct fn_list *fnlp, struct fn_list *fnlp2);
65 void fn_list_appendrange(struct fn_list *fnlp,
67 void fn_list_print(struct fn_list *fnlp, FILE *stream);
68 off_t fn_list_totalsize(struct fn_list *fnlp);
[all …]
H A Dglob.c82 static struct fn_list *glob_reglob_list(struct fn_list *fnlp);
201 glob_glob_list(struct fn_list *fnlp) in glob_glob_list() argument
206 fn_list_rewind(fnlp); in glob_glob_list()
207 while ((fnp = fn_list_next(fnlp)) != NULL) in glob_glob_list()
327 glob_reglob_list(struct fn_list *fnlp) in glob_reglob_list() argument
332 fn_list_rewind(fnlp); in glob_reglob_list()
333 while ((fnp = fn_list_next(fnlp)) != NULL) in glob_reglob_list()
391 struct fn_list *fnlp; in main() local
409 fnlp = glob_reglob(argfnp); in main()
411 fnlp = glob_glob(argfnp); in main()
[all …]
H A Dglob.h39 struct fn_list *glob_glob_list(struct fn_list *fnlp);