Lines Matching refs:expr_str
364 char *expr_str; in cil_expr_to_string() local
413 expr_str = cil_malloc(len); in cil_expr_to_string()
414 snprintf(expr_str, len, "(%s %s)", op_str, stack[pos-1]); in cil_expr_to_string()
424 expr_str = cil_malloc(len); in cil_expr_to_string()
425 snprintf(expr_str, len, "(%s %s %s)", op_str, stack[pos-1], stack[pos-2]); in cil_expr_to_string()
432 stack[pos] = expr_str; in cil_expr_to_string()
505 char *expr_str; in cil_tree_print_expr() local
510 cil_expr_to_string(datum_expr, &expr_str); in cil_tree_print_expr()
512 cil_expr_to_string(str_expr, &expr_str); in cil_tree_print_expr()
515 cil_log(CIL_INFO, "%s)", expr_str); in cil_tree_print_expr()
516 free(expr_str); in cil_tree_print_expr()