Lines Matching refs:lists
5148 char *sep = NULL, *lists[2] = { NULL, NULL, }; in trace__parse_events_option() local
5184 if (lists[list]) { in trace__parse_events_option()
5185 sprintf(lists[list] + strlen(lists[list]), ",%s", s); in trace__parse_events_option()
5187 lists[list] = malloc(len); in trace__parse_events_option()
5188 if (lists[list] == NULL) in trace__parse_events_option()
5190 strcpy(lists[list], s); in trace__parse_events_option()
5200 if (lists[1] != NULL) { in trace__parse_events_option()
5205 trace->ev_qualifier = strlist__new(lists[1], &slist_config); in trace__parse_events_option()
5218 if (lists[0]) { in trace__parse_events_option()
5225 err = parse_events_option(&o, lists[0], 0); in trace__parse_events_option()
5229 free(lists[0]); in trace__parse_events_option()
5230 free(lists[1]); in trace__parse_events_option()