| 33 | ClockInterface* g_clock = nullptr; |
| 34 | |
| 35 | ClockInterface* SetClockForTesting(ClockInterface* clock) { |
| 36 | ClockInterface* prev = g_clock; |
| 37 | g_clock = clock; |
| 38 | return prev; |
| 39 | } |
| 40 | |
| 41 | uint64_t SystemTimeNanos() { |
| 42 | int64_t ticks; |
no outgoing calls
no test coverage detected