Home | History | Annotate | Download | only in traceevent

Lines Matching refs:item

150 	struct cmdline_list *item;
163 item = cmdlist;
165 free(item);
285 struct cmdline_list *item;
290 item = malloc(sizeof(*item));
291 if (!item)
294 item->comm = strdup(comm);
295 if (!item->comm) {
296 free(item);
299 item->pid = pid;
300 item->next = pevent->cmdlist;
302 pevent->cmdlist = item;
358 struct func_list *item;
374 item = funclist;
376 free(item);
465 struct func_list *item = malloc(sizeof(*item));
467 if (!item)
470 item->next = pevent->funclist;
471 item->func = strdup(func);
472 if (!item->func)
476 item->mod = strdup(mod);
477 if (!item->mod)
480 item->mod = NULL;
481 item->addr = addr;
483 pevent->funclist = item;
489 free(item->func);
490 item->func = NULL;
492 free(item);
548 struct printk_list *item;
563 item = printklist;
565 free(item);
605 struct printk_list *item = malloc(sizeof(*item));
607 if (!item)
610 item->next = pevent->printklist;
611 item->addr = addr;
613 item->printk = strdup(fmt);
614 if (!item->printk)
617 pevent->printklist = item;
623 free(item);
733 free_arg(arg->typecast.item);
1408 * the format: type [] item;
2083 ret = arg_num_eval(arg->typecast.item, val);
2241 return arg_eval(arg->typecast.item);
2493 * The item within the parenthesis is another field that holds
2571 * If the next token is an item or another open paren, then
2593 arg->typecast.item = item_arg;
3262 val = eval_num_arg(data, size, event, arg->typecast.item);
3287 larg = larg->typecast.item;
4635 * Returns an allocated array of fields. The last item in the array is NULL.
4649 * Returns an allocated array of fields. The last item in the array is NULL.
4717 print_args(args->typecast.item);