Lines Matching defs:errcode
2630 reg_errcode_t errcode = REG_OK;
2639 errcode = tre_ast_to_tnfa(uni->left, transitions, counts, offs);
2640 if (errcode != REG_OK)
2641 return errcode;
2642 errcode = tre_ast_to_tnfa(uni->right, transitions, counts, offs);
2649 errcode = tre_make_trans(cat->left->lastpos, cat->right->firstpos,
2651 if (errcode != REG_OK)
2652 return errcode;
2653 errcode = tre_ast_to_tnfa(cat->left, transitions, counts, offs);
2654 if (errcode != REG_OK)
2655 return errcode;
2656 errcode = tre_ast_to_tnfa(cat->right, transitions, counts, offs);
2668 errcode = tre_make_trans(iter->arg->lastpos, iter->arg->firstpos,
2670 if (errcode != REG_OK)
2671 return errcode;
2673 errcode = tre_ast_to_tnfa(iter->arg, transitions, counts, offs);
2676 return errcode;
2683 errcode = err; \
2702 reg_errcode_t errcode;
2728 errcode = tre_parse(&parse_ctx);
2729 if (errcode != REG_OK)
2730 ERROR_EXIT(errcode);
2756 errcode = tre_add_tags(NULL, stack, tree, tnfa);
2757 if (errcode != REG_OK)
2758 ERROR_EXIT(errcode);
2781 errcode = tre_add_tags(mem, stack, tree, tnfa);
2782 if (errcode != REG_OK)
2783 ERROR_EXIT(errcode);
2788 errcode = tre_expand_ast(mem, stack, tree, &parse_ctx.position,
2790 if (errcode != REG_OK)
2791 ERROR_EXIT(errcode);
2806 errcode = tre_compute_nfl(mem, stack, tree);
2807 if (errcode != REG_OK)
2808 ERROR_EXIT(errcode);
2835 errcode = tre_ast_to_tnfa(tree, transitions, counts, offs);
2836 if (errcode != REG_OK)
2837 ERROR_EXIT(errcode);
2900 return errcode;