| 3656 | } |
| 3657 | |
| 3658 | static void recordRepeatRuntime(string name, uint32_t start_ms) { |
| 3659 | auto & counters = Core::getInstance().perf_counters; |
| 3660 | counters.incCounter(counters.update_lua_per_repeat[name.c_str()], start_ms); |
| 3661 | } |
| 3662 | |
| 3663 | static void recordZScreenRuntime(string name, uint32_t start_ms) { |
| 3664 | auto & counters = Core::getInstance().perf_counters; |
nothing calls this directly
no test coverage detected