Lines Matching refs:cur

29 	struct cond_expr *cur;  in cond_evaluate_expr()  local
33 for (cur = expr; cur; cur = cur->next) { in cond_evaluate_expr()
34 switch (cur->expr_type) { in cond_evaluate_expr()
39 s[sp] = p->bool_val_to_struct[cur->bool - 1]->state; in cond_evaluate_expr()
93 struct cond_av_list *cur; in evaluate_cond_node() local
101 for (cur = node->true_list; cur; cur = cur->next) { in evaluate_cond_node()
103 cur->node->key.specified &= ~AVTAB_ENABLED; in evaluate_cond_node()
105 cur->node->key.specified |= AVTAB_ENABLED; in evaluate_cond_node()
108 for (cur = node->false_list; cur; cur = cur->next) { in evaluate_cond_node()
111 cur->node->key.specified &= ~AVTAB_ENABLED; in evaluate_cond_node()
113 cur->node->key.specified |= AVTAB_ENABLED; in evaluate_cond_node()
135 struct cond_av_list *cur, *next; in cond_av_list_destroy() local
136 for (cur = list; cur; cur = next) { in cond_av_list_destroy()
137 next = cur->next; in cond_av_list_destroy()
139 kfree(cur); in cond_av_list_destroy()
158 struct cond_node *next, *cur; in cond_list_destroy() local
163 for (cur = list; cur; cur = next) { in cond_list_destroy()
164 next = cur->next; in cond_list_destroy()
165 cond_node_destroy(cur); in cond_list_destroy()
275 struct cond_av_list *other = data->other, *list, *cur; in cond_insertf() local
306 for (cur = other; cur; cur = cur->next) { in cond_insertf()
307 if (cur->node == node_ptr) { in cond_insertf()
595 struct cond_node *cur; in cond_write_list() local
601 for (cur = list; cur != NULL; cur = cur->next) in cond_write_list()
608 for (cur = list; cur != NULL; cur = cur->next) { in cond_write_list()
609 rc = cond_write_node(p, cur, fp); in cond_write_list()