Lines Matching refs:head
75 __find_event_field(struct list_head *head, char *name) in __find_event_field() argument
79 list_for_each_entry(field, head, link) { in __find_event_field()
91 struct list_head *head; in trace_find_event_field() local
93 head = trace_get_fields(call); in trace_find_event_field()
94 field = __find_event_field(head, name); in trace_find_event_field()
105 static int __trace_define_field(struct list_head *head, const char *type, in __trace_define_field() argument
127 list_add(&field->link, head); in __trace_define_field()
136 struct list_head *head; in trace_define_field() local
141 head = trace_get_fields(call); in trace_define_field()
142 return __trace_define_field(head, type, name, offset, size, in trace_define_field()
191 struct list_head *head; in trace_destroy_fields() local
193 head = trace_get_fields(call); in trace_destroy_fields()
194 list_for_each_entry_safe(field, next, head, link) { in trace_destroy_fields()
207 struct list_head *head; in trace_event_get_offsets() local
209 head = trace_get_fields(call); in trace_event_get_offsets()
214 tail = list_first_entry(head, struct ftrace_event_field, link); in trace_event_get_offsets()
1187 struct list_head *head = trace_get_fields(call); in f_next() local
1198 node = head; in f_next()
1209 else if (node == head) in f_next()
1953 struct list_head *head; in event_create_dir() local
1991 head = trace_get_fields(call); in event_create_dir()
1992 if (list_empty(head)) { in event_create_dir()