Home | History | Annotate | Download | only in util

Lines Matching refs:fp

130 static void perf_read_values__display_pretty(FILE *fp,
160 fprintf(fp, "# %*s %*s", pidwidth, "PID", tidwidth, "TID");
162 fprintf(fp, " %*s", counterwidth[j], values->countername[j]);
163 fprintf(fp, "\n");
166 fprintf(fp, " %*d %*d", pidwidth, values->pid[i],
169 fprintf(fp, " %*" PRIu64,
171 fprintf(fp, "\n");
176 static void perf_read_values__display_raw(FILE *fp,
212 fprintf(fp, "# %*s %*s %*s %*s %*s\n",
218 fprintf(fp, " %*d %*d %*s %*" PRIx64 " %*" PRIu64,
226 void perf_read_values_display(FILE *fp, struct perf_read_values *values, int raw)
229 perf_read_values__display_raw(fp, values);
231 perf_read_values__display_pretty(fp, values);