| 253 | } |
| 254 | |
| 255 | static void FileOutputStreamLargeWritesToPipe( |
| 256 | benchmark::State& state) { // NOLINT non-const reference |
| 257 | std::shared_ptr<io::OutputStream> stream; |
| 258 | std::shared_ptr<BackgroundReader> reader; |
| 259 | SetupPipeWriter(&stream, &reader); |
| 260 | |
| 261 | BenchmarkStreamingWrites(state, large_sizes, stream.get(), reader.get()); |
| 262 | } |
| 263 | |
| 264 | static void BufferedOutputStreamSmallWritesToPipe( |
| 265 | benchmark::State& state) { // NOLINT non-const reference |
nothing calls this directly
no test coverage detected