Lines Matching refs:combined
1305 struct expr_parse_ctx **combined) in build_combined_expr_ctx() argument
1313 *combined = expr__ctx_new(); in build_combined_expr_ctx()
1314 if (!*combined) in build_combined_expr_ctx()
1325 ret = expr__add_id(*combined, dup); in build_combined_expr_ctx()
1333 expr__ctx_free(*combined); in build_combined_expr_ctx()
1334 *combined = NULL; in build_combined_expr_ctx()
1452 struct expr_parse_ctx *combined = NULL; in parse_groups() local
1456 ret = build_combined_expr_ctx(&metric_list, &combined); in parse_groups()
1458 if (!ret && combined && hashmap__size(combined->ids)) { in parse_groups()
1459 ret = parse_ids(metric_no_merge, fake_pmu, combined, in parse_groups()
1465 if (combined) in parse_groups()
1466 expr__ctx_free(combined); in parse_groups()