Searched defs:cur_expr (Results 1 - 4 of 4) sorted by relevance

/external/selinux/libsepol/src/
H A Dconditional.c478 cond_expr_t *cur_expr, *next_expr; local
483 for (cur_expr = expr; cur_expr != NULL; cur_expr = next_expr) {
484 next_expr = cur_expr->next;
485 free(cur_expr);
H A Dwrite.c729 cond_expr_t *cur_expr; local
740 for (cur_expr = node->expr; cur_expr != NULL; cur_expr = cur_expr->next)
748 for (cur_expr = node->expr; cur_expr != NULL; cur_expr = cur_expr->next) {
750 buf[items++] = cpu_to_le32(cur_expr
[all...]
H A Dexpand.c2803 cond_expr_t *cur_expr; local
2840 for (cur_expr = cur_node->expr; cur_expr != NULL;
2841 cur_expr = cur_expr->next) {
2842 if (cur_expr->expr_type != COND_BOOL)
2844 booldatum = pol->bool_val_to_struct[cur_expr->bool - 1];
H A Dlink.c1551 cond_expr_t *cur_expr; local
1569 for (cur_expr = new_node->expr; cur_expr != NULL;
1570 cur_expr = cur_expr->next) {
1572 if (cur_expr->expr_type != COND_BOOL)
1574 assert(module->map[SYM_BOOLS][cur_expr->bool - 1] != 0);
1575 cur_expr->bool =
1576 module->map[SYM_BOOLS][cur_expr->bool - 1];

Completed in 227 milliseconds