Lines Matching refs:sep
737 const char *sep, *rsep, *id = cur->key; in metricgroup__build_event_string() local
767 sep = strchr(id, '@'); in metricgroup__build_event_string()
768 if (sep != NULL) { in metricgroup__build_event_string()
769 ret = strbuf_add(events, id, sep - id); in metricgroup__build_event_string()
773 rsep = strrchr(sep, '@'); in metricgroup__build_event_string()
774 ret = strbuf_add(events, sep + 1, rsep - sep - 1); in metricgroup__build_event_string()
778 sep = rsep; in metricgroup__build_event_string()
780 sep = strchr(id, ':'); in metricgroup__build_event_string()
781 if (sep != NULL) { in metricgroup__build_event_string()
782 ret = strbuf_add(events, id, sep - id); in metricgroup__build_event_string()
796 if (sep != NULL) { in metricgroup__build_event_string()
797 ret = strbuf_addstr(events, sep + 1); in metricgroup__build_event_string()