Lines Matching refs:head
64 %type <head> event_config
66 %type <head> event_pmu
67 %type <head> event_legacy_symbol
68 %type <head> event_legacy_cache
69 %type <head> event_legacy_mem
70 %type <head> event_legacy_tracepoint
71 %type <head> event_legacy_numeric
72 %type <head> event_legacy_raw
73 %type <head> event_def
74 %type <head> event_mod
75 %type <head> event_name
76 %type <head> event
77 %type <head> events
78 %type <head> group_def
79 %type <head> group
80 %type <head> groups
86 struct list_head *head; member
229 struct list_head *head; variable
233 ALLOC_LIST(head);
236 list_add_tail(&term->list, head);
239 ABORT_ON(parse_events_add_pmu(list, &data->idx, "cpu", head));
240 parse_events__free_terms(head);
247 struct list_head *head; variable
253 ALLOC_LIST(head);
256 list_add_tail(&term->list, head);
259 ABORT_ON(parse_events_add_pmu(list, &data->idx, "cpu", head));
260 parse_events__free_terms(head);
428 struct list_head *head = $1; variable
431 ABORT_ON(!head);
432 list_add_tail(&term->list, head);
438 struct list_head *head = malloc(sizeof(*head)); variable
441 ABORT_ON(!head);
442 INIT_LIST_HEAD(head);
443 list_add_tail(&term->list, head);
444 $$ = head;