Lines Matching refs:combined
1402 struct expr_parse_ctx **combined) in build_combined_expr_ctx() argument
1410 *combined = expr__ctx_new(); in build_combined_expr_ctx()
1411 if (!*combined) in build_combined_expr_ctx()
1422 ret = expr__add_id(*combined, dup); in build_combined_expr_ctx()
1430 expr__ctx_free(*combined); in build_combined_expr_ctx()
1431 *combined = NULL; in build_combined_expr_ctx()
1554 struct expr_parse_ctx *combined = NULL; in parse_groups() local
1558 ret = build_combined_expr_ctx(&metric_list, &combined); in parse_groups()
1560 if (!ret && combined && hashmap__size(combined->ids)) { in parse_groups()
1561 ret = parse_ids(metric_no_merge, fake_pmu, combined, in parse_groups()
1567 if (combined) in parse_groups()
1568 expr__ctx_free(combined); in parse_groups()