Lines Matching defs:stack
3548 static int cil_check_inheritances(struct cil_tree_node *node, unsigned max, unsigned *count, struct cil_stack *stack, unsigned *loop)
3563 cil_stack_for_each(stack, i, item) {
3571 cil_stack_push(stack, CIL_BLOCK, block_node);
3572 rc = cil_check_inheritances(block_node, max, count, stack, loop);
3573 cil_stack_pop(stack);
3584 rc = cil_check_inheritances(node, max, count, stack, loop);
3598 struct cil_stack *stack;
3608 cil_stack_init(&stack);
3609 rc = cil_check_inheritances(node, max, &num_potential, stack, &loop);
3610 cil_stack_destroy(&stack);