Lines Matching defs:call
36 parse_field(char *str, struct trace_event_call *call,
60 field = trace_find_event_field(call, field_name);
138 static int trace_get_entry_size(struct trace_event_call *call)
144 head = trace_get_fields(call);
153 static void *trace_alloc_entry(struct trace_event_call *call, int *size)
155 int entry_size = trace_get_entry_size(call);
165 head = trace_get_fields(call);
192 static int parse_entry(char *str, struct trace_event_call *call, void **pentry)
201 entry = trace_alloc_entry(call, &entry_size);
207 tracing_generic_entry_update(entry, call->event.type, irq_flags,
210 while ((len = parse_field(str, call, &field, &val)) > 0) {
282 struct trace_event_call *call;
299 call = file->event_call;
300 size = parse_entry(buf, call, &entry);