Searched refs:list_p (Results 1 – 5 of 5) sorted by relevance
/titanic_41/usr/src/cmd/tnf/prex/ |
H A D | expr.c | 102 expr_dup(expr_t * list_p) in expr_dup() argument 107 if (!list_p) in expr_dup() 111 head_p = expr(spec_dup(list_p->left_p), in expr_dup() 112 spec_dup(list_p->right_p)); in expr_dup() 115 expr_p = list_p; in expr_dup() 116 while (expr_p = (expr_t *) queue_next(&list_p->qn, &expr_p->qn)) { in expr_dup() 134 expr_destroy(expr_t * list_p) in expr_destroy() argument 138 while (expr_p = (expr_t *) queue_next(&list_p->qn, &list_p->qn)) { in expr_destroy() 148 if (list_p->left_p) in expr_destroy() 149 spec_destroy(list_p->left_p); in expr_destroy() [all …]
|
H A D | spec.c | 110 spec_destroy(spec_t * list_p) in spec_destroy() argument 114 while ((spec_p = (spec_t *) queue_next(&list_p->qn, &list_p->qn))) { in spec_destroy() 124 if (list_p->str) in spec_destroy() 125 free(list_p->str); in spec_destroy() 126 if (list_p->regexp_p) in spec_destroy() 127 free(list_p->regexp_p); in spec_destroy() 128 free(list_p); in spec_destroy() 153 spec_t * list_p) in spec_print() argument 157 while ((spec_p = (spec_t *) queue_next(&list_p->qn, &spec_p->qn))) { in spec_print()
|
H A D | expr.h | 61 void expr_destroy(expr_t * list_p); 62 expr_t * expr_list(expr_t * list_p, expr_t * item_p); 63 void expr_print(FILE * stream, expr_t * list_p); 65 expr_t * expr_dup(expr_t * list_p);
|
H A D | spec.h | 81 void spec_destroy(spec_t * list_p); 82 void spec_print(FILE * stream, spec_t * list_p); 83 spec_t * spec_list(spec_t * list_p, spec_t * item_p);
|
/titanic_41/usr/src/uts/common/tnf/ |
H A D | tnf_writer.c | 665 tnf_tag_data_t **list_p, *tag_p; in tnf_root_tag_1() local 667 list_p = bootstrap_types; in tnf_root_tag_1() 669 while (tag_p = *list_p++) { in tnf_root_tag_1()
|