| 286 | void BytesProcessed(int64 n) { bytes_processed = n; } |
| 287 | void ItemsProcessed(int64 n) { items_processed = n; } |
| 288 | void StartTiming() { |
| 289 | if (start_time == 0) start_time = env->NowMicros(); |
| 290 | } |
| 291 | void StopTiming() { |
| 292 | if (start_time != 0) { |
| 293 | accum_time += (env->NowMicros() - start_time); |
no test coverage detected