Lines Matching refs:item
93 } *list = NULL, *item;
100 item = malloc_or_die(sizeof(*item));
101 sscanf(line, "%d %as", &item->pid,
102 (float *)(void *)&item->comm); /* workaround gcc warning */
103 item->next = list;
104 list = item;
116 item = list;
118 free(item);
151 } *list = NULL, *item;
161 item = malloc_or_die(sizeof(*item));
162 item->mod = NULL;
166 (float *)(void *)&item->func,
167 (float *)(void *)&item->mod);
168 item->addr = strtoull(addr_str, NULL, 16);
172 if (item->mod)
173 item->mod[strlen(item->mod) - 1] = 0;
176 item->next = list;
177 list = item;
190 item = list;
192 free(item);
292 } *list = NULL, *item;
305 item = malloc_or_die(sizeof(*item));
306 item->addr = strtoull(addr_str, NULL, 16);
308 item->printk = strdup(line+1);
309 item->next = list;
310 list = item;
322 item = list;
324 free(item);
887 * the format: type [] item;
1353 val = arg_num_eval(arg->typecast.item);
1452 return arg_eval(arg->typecast.item);
1628 * If the next token is an item or another open paren, then
1644 arg->typecast.item = item_arg;
2084 return eval_num_arg(data, size, event, arg->typecast.item);
2989 print_args(args->typecast.item);