Home | History | Annotate | Download | only in util

Lines Matching refs:next

90 		struct cmdline_list	*next;
95 char *next = NULL;
98 line = strtok_r(file, "\n", &next);
103 item->next = list;
105 line = strtok_r(NULL, "\n", &next);
117 list = list->next;
147 struct func_list *next;
153 char *next = NULL;
159 line = strtok_r(file, "\n", &next);
176 item->next = list;
178 line = strtok_r(NULL, "\n", &next);
191 list = list->next;
289 struct printk_list *next;
294 char *next = NULL;
298 line = strtok_r(file, "\n", &next);
309 item->next = list;
311 line = strtok_r(NULL, "\n", &next);
323 list = list->next;
367 event->next = event_list;
886 * If the next token is not an OP, then it is of
975 fields = &field->next;
1508 list = &field->next;
1628 * If the next token is an item or another open paren, then
1709 /* test the next token */
1786 list = &arg->next;
1793 list = &arg->next;
1870 format; format = format->next) {
1884 format; format = format->next) {
2042 for (event = event_list; event; event = event->next) {
2054 return event->next;
2246 for (flag = arg->flags.flags; flag; flag = flag->next) {
2263 for (flag = arg->symbol.symbols; flag; flag = flag->next) {
2309 struct print_arg *args, *arg, **next;
2330 arg->next = NULL;
2331 next = &arg->next;
2379 arg->next = NULL;
2383 *next = arg;
2384 next = &arg->next;
2388 arg->next = NULL;
2392 *next = arg;
2393 next = &arg->next;
2405 struct print_arg *next;
2408 next = args->next;
2415 args = next;
2560 arg = arg->next;
2591 arg = arg->next;
2655 struct record *next)
2663 type = trace_parse_common_type(next->data);
2671 pid = trace_parse_common_pid(next->data);
2676 val = read_size(next->data + field->offset, field->size);
2950 if (field->next) {
2952 print_fields(field->next);
3006 if (args->next) {
3008 print_args(args->next);
3065 for (field = event->format.fields; field; field = field->next) {
3069 list = &arg->next;