Searched defs:list_p (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/tnf/prex/
H A Dexpr.c102 expr_dup(expr_t * list_p) argument
107 if (!list_p)
111 head_p = expr(spec_dup(list_p->left_p),
112 spec_dup(list_p->right_p));
115 expr_p = list_p;
116 while (expr_p = (expr_t *) queue_next(&list_p->qn, &expr_p->qn)) {
134 expr_destroy(expr_t * list_p) argument
138 while (expr_p = (expr_t *) queue_next(&list_p->qn, &list_p->qn)) {
148 if (list_p
176 expr_print(FILE * stream, expr_t * list_p) argument
196 expr_match(expr_t * list_p, const char *attrs) argument
[all...]
H A Dspec.c110 spec_destroy(spec_t * list_p) argument
114 while ((spec_p = (spec_t *) queue_next(&list_p->qn, &list_p->qn))) {
124 if (list_p->str)
125 free(list_p->str);
126 if (list_p->regexp_p)
127 free(list_p->regexp_p);
128 free(list_p);
153 spec_t * list_p)
157 while ((spec_p = (spec_t *) queue_next(&list_p
152 spec_print(FILE * stream, spec_t * list_p) argument
[all...]
/illumos-gate/usr/src/uts/common/tnf/
H A Dtnf_writer.c665 tnf_tag_data_t **list_p, *tag_p; local
667 list_p = bootstrap_types;
669 while (tag_p = *list_p++) {

Completed in 71 milliseconds