| 175 | } |
| 176 | |
| 177 | void trace_strbuf_fl(const char *file, int line, struct trace_key *key, |
| 178 | const struct strbuf *data) |
| 179 | { |
| 180 | struct strbuf buf = STRBUF_INIT; |
| 181 | |
| 182 | if (!prepare_trace_line(file, line, key, &buf)) |
| 183 | return; |
| 184 | |
| 185 | strbuf_addbuf(&buf, data); |
| 186 | print_trace_line(key, &buf); |
| 187 | strbuf_release(&buf); |
| 188 | } |
| 189 | |
| 190 | static uint64_t perf_start_times[10]; |
| 191 | static int perf_indent; |
nothing calls this directly
no test coverage detected