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

/illumos-gate/usr/src/cmd/logadm/
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 Dfn.c341 * struct fn_list *fnlp = some_func_returning_a_list();
342 * if (fn_list_empty(fnlp))
345 * is preferable to checking if the fnlp returned is NULL.
350 struct fn_list *fnlp = MALLOC(sizeof (struct fn_list)); local
352 fnlp->fnl_first = fnlp->fnl_last = fnlp->fnl_rptr = NULL;
355 fn_list_adds(fnlp, *slist++);
357 return (fnlp);
364 fn_list_dup(struct fn_list *fnlp) argument
380 fn_list_free(struct fn_list *fnlp) argument
394 fn_list_adds(struct fn_list *fnlp, const char *s) argument
403 fn_list_addfn(struct fn_list *fnlp, struct fn *fnp) argument
418 fn_list_rewind(struct fn_list *fnlp) argument
427 fn_list_next(struct fn_list *fnlp) argument
445 fn_list_addfn_list(struct fn_list *fnlp, struct fn_list *fnlp2) argument
476 fn_list_appendrange(struct fn_list *fnlp, const char *s, const char *limit) argument
501 fn_list_totalsize(struct fn_list *fnlp) argument
521 fn_list_popoldest(struct fn_list *fnlp) argument
563 fn_list_empty(struct fn_list *fnlp) argument
572 fn_list_count(struct fn_list *fnlp) argument
[all...]
H A Dglob.h39 struct fn_list *glob_glob_list(struct fn_list *fnlp);
H A Dglob.c82 static struct fn_list *glob_reglob_list(struct fn_list *fnlp);
201 glob_glob_list(struct fn_list *fnlp) argument
206 fn_list_rewind(fnlp);
207 while ((fnp = fn_list_next(fnlp)) != NULL)
327 glob_reglob_list(struct fn_list *fnlp) argument
332 fn_list_rewind(fnlp);
333 while ((fnp = fn_list_next(fnlp)) != NULL)
391 struct fn_list *fnlp; local
409 fnlp = glob_reglob(argfnp);
411 fnlp
[all...]

Completed in 57 milliseconds