Lines Matching refs:fieldp
1631 struct perf_probe_arg_field **fieldp;
1680 fieldp = &arg->field;
1683 *fieldp = zalloc(sizeof(struct perf_probe_arg_field));
1684 if (*fieldp == NULL)
1688 (*fieldp)->index = strtol(str + 1, &tmp, 0);
1689 (*fieldp)->ref = true;
1701 (*fieldp)->ref = false;
1704 (*fieldp)->ref = true;
1713 (*fieldp)->name = strndup(str, tmp - str);
1714 if ((*fieldp)->name == NULL)
1717 goodname = (*fieldp)->name;
1718 pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
1719 fieldp = &(*fieldp)->next;
1722 (*fieldp)->name = strdup(str);
1723 if ((*fieldp)->name == NULL)
1726 goodname = (*fieldp)->name;
1727 pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);