| 88 | inline int64 NowInNsec() { return Env::Default()->NowNanos(); } |
| 89 | |
| 90 | void SetScheduled(NodeExecStatsInterface* stats, int64 micros) { |
| 91 | if (!stats) return; |
| 92 | stats->SetScheduled(micros * EnvTime::kMicrosToNanos); |
| 93 | } |
| 94 | |
| 95 | |
| 96 | void SetAllStart(NodeExecStatsInterface* stats) { |
no test coverage detected