Home | History | Annotate | Download | only in src

Lines Matching refs:cur

32 	cond_av_list_t *top, *p, *cur;
34 top = p = cur = *l;
36 while (cur) {
37 if ((cur->node->key.specified & AVTAB_TYPE) && (top != cur)) {
38 p->next = cur->next;
39 cur->next = top;
40 top = cur;
41 cur = p->next;
43 p = cur;
44 cur = cur->next;
213 cond_expr_t *cur;
219 for (cur = expr; cur != NULL; cur = cur->next) {
220 switch (cur->expr_type) {
225 s[sp] = p->bool_val_to_struct[cur->bool - 1]->state;
271 cond_expr_t *cur, *head, *tail, *new_expr;
273 cur = expr;
274 while (cur) {
280 new_expr->expr_type = cur->expr_type;
281 new_expr->bool = cur->bool;
288 cur = cur->next;
311 cond_av_list_t *cur;
320 for (cur = node->true_list; cur != NULL; cur = cur->next) {
322 cur->node->key.specified &= ~AVTAB_ENABLED;
324 cur->node->key.specified |= AVTAB_ENABLED;
328 for (cur = node->false_list; cur != NULL; cur = cur->next) {
331 cur->node->key.specified &= ~AVTAB_ENABLED;
333 cur->node->key.specified |= AVTAB_ENABLED;
446 cond_node_t *cur;
448 for (cur = p->cond_list; cur != NULL; cur = cur->next) {
449 ret = evaluate_cond_node(p, cur);
468 cond_av_list_t *cur, *next;
469 for (cur = list; cur != NULL; cur = next) {
470 next = cur->next;
472 free(cur);
503 cond_node_t *next, *cur;
508 for (cur = list; cur != NULL; cur = next) {
509 next = cur->next;
510 cond_node_destroy(cur);
511 free(cur);
628 cond_av_list_t *other = data->other, *list, *cur;
661 for (cur = other; cur != NULL; cur = cur->next) {
662 if (cur->node == node_ptr) {