| 114 | } |
| 115 | |
| 116 | void UpdateGraphExecTime(const uint64 running_time_usecs) { |
| 117 | if (running_time_usecs > 0) { |
| 118 | graph_runs->GetCell()->IncrementBy(1); |
| 119 | graph_run_time_usecs->GetCell()->IncrementBy(running_time_usecs); |
| 120 | graph_run_time_usecs_histogram->GetCell()->Add(running_time_usecs); |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | void UpdateGraphBuildTime(const uint64 running_time_usecs) { |
| 125 | if (running_time_usecs > 0) { |
no test coverage detected