Home | History | Annotate | Download | only in util

Lines Matching full:fieldp

942 	struct perf_probe_arg_field **fieldp;
980 fieldp = &arg->field;
983 *fieldp = zalloc(sizeof(struct perf_probe_arg_field));
984 if (*fieldp == NULL)
988 (*fieldp)->index = strtol(str + 1, &tmp, 0);
989 (*fieldp)->ref = true;
1001 (*fieldp)->ref = false;
1004 (*fieldp)->ref = true;
1013 (*fieldp)->name = strndup(str, tmp - str);
1014 if ((*fieldp)->name == NULL)
1017 goodname = (*fieldp)->name;
1018 pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
1019 fieldp = &(*fieldp)->next;
1022 (*fieldp)->name = strdup(str);
1023 if ((*fieldp)->name == NULL)
1026 goodname = (*fieldp)->name;
1027 pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);