Symbol: set_parent
usr/src/tools/smatch/src/check_leaks.c
166
set_parent(expr->cond_true, state);
usr/src/tools/smatch/src/check_leaks.c
167
set_parent(expr->cond_false, state);
usr/src/tools/smatch/src/check_leaks.c
186
set_parent(tmp, &ok);
usr/src/tools/smatch/src/check_leaks.c
223
set_parent(right, &ok);
usr/src/tools/smatch/src/check_leaks.c
243
set_parent(ret_value, &ok);
usr/src/tools/smatch/src/check_leaks.c
47
static void set_parent(struct expression *expr, struct smatch_state *state);
usr/src/tools/smatch/src/smatch_helper.c
733
static struct expression *strip_expr_helper(struct expression *expr, bool set_parent)
usr/src/tools/smatch/src/smatch_helper.c
741
if (set_parent)
usr/src/tools/smatch/src/smatch_helper.c
746
return strip_expr_helper(expr->cast_expression, set_parent);
usr/src/tools/smatch/src/smatch_helper.c
752
if (set_parent)
usr/src/tools/smatch/src/smatch_helper.c
760
unop = strip_expr_helper(expr->unop, set_parent);
usr/src/tools/smatch/src/smatch_helper.c
768
return strip_expr_helper(unop->unop, set_parent);
usr/src/tools/smatch/src/smatch_helper.c
779
if (set_parent)
usr/src/tools/smatch/src/smatch_helper.c
781
return strip_expr_helper(expr->cond_true, set_parent);
usr/src/tools/smatch/src/smatch_helper.c
783
if (set_parent)
usr/src/tools/smatch/src/smatch_helper.c
785
return strip_expr_helper(expr->conditional, set_parent);
usr/src/tools/smatch/src/smatch_helper.c
788
if (set_parent)
usr/src/tools/smatch/src/smatch_helper.c
790
return strip_expr_helper(expr->cond_false, set_parent);
usr/src/tools/smatch/src/smatch_helper.c
799
return strip_expr_helper(expr, set_parent);