Lines Matching refs:fieldp
1659 struct perf_probe_arg_field **fieldp;
1708 fieldp = &arg->field;
1711 *fieldp = zalloc(sizeof(struct perf_probe_arg_field));
1712 if (*fieldp == NULL)
1716 (*fieldp)->index = strtol(str + 1, &tmp, 0);
1717 (*fieldp)->ref = true;
1729 (*fieldp)->ref = false;
1732 (*fieldp)->ref = true;
1741 (*fieldp)->name = strndup(str, tmp - str);
1742 if ((*fieldp)->name == NULL)
1745 goodname = (*fieldp)->name;
1746 pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
1747 fieldp = &(*fieldp)->next;
1750 (*fieldp)->name = strdup(str);
1751 if ((*fieldp)->name == NULL)
1754 goodname = (*fieldp)->name;
1755 pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);