Home | History | Annotate | Download | only in util

Lines Matching refs:fp

129 static void perf_read_values__display_pretty(FILE *fp,
159 fprintf(fp, "# %*s %*s", pidwidth, "PID", tidwidth, "TID");
161 fprintf(fp, " %*s", counterwidth[j], values->countername[j]);
162 fprintf(fp, "\n");
165 fprintf(fp, " %*d %*d", pidwidth, values->pid[i],
168 fprintf(fp, " %*" PRIu64,
170 fprintf(fp, "\n");
175 static void perf_read_values__display_raw(FILE *fp,
211 fprintf(fp, "# %*s %*s %*s %*s %*s\n",
217 fprintf(fp, " %*d %*d %*s %*" PRIx64 " %*" PRIu64,
225 void perf_read_values_display(FILE *fp, struct perf_read_values *values, int raw)
228 perf_read_values__display_raw(fp, values);
230 perf_read_values__display_pretty(fp, values);