Lines Matching refs:groups
99 %type <list_evsel> groups
135 start_events: groups
138 struct list_head *groups = $1; variable
141 list_splice_tail(groups, &parse_state->list);
142 free(groups);
145 groups: /* A list of groups or events. */
146 groups ',' group
149 struct list_head *groups = $1; variable
152 list_splice_tail(group, groups);
154 $$ = groups;
157 groups ',' event
160 struct list_head *groups = $1; variable
164 list_splice_tail(event, groups);
166 $$ = groups;