| 217 | } |
| 218 | |
| 219 | static bool ShouldDumpFrame(const BenchmarkOptions& options, int frame_number) { |
| 220 | return !options.dump_dir.empty() && options.dump_every > 0 && |
| 221 | frame_number > 0 && ((frame_number - 1) % options.dump_every == 0); |
| 222 | } |
| 223 | |
| 224 | static std::filesystem::path DumpFramePath(const BenchmarkOptions& options, |
| 225 | const std::string& row_name, |
no outgoing calls
no test coverage detected