| 22 | } |
| 23 | |
| 24 | bool IsConsoleCharging() { |
| 25 | auto charger_type = PsmChargerType_Unconnected; |
| 26 | psmGetChargerType(&charger_type); |
| 27 | return charger_type > PsmChargerType_Unconnected; |
| 28 | } |
| 29 | |
| 30 | Time GetCurrentTime() { |
| 31 | const auto time_val = ::time(nullptr); |
no outgoing calls
no test coverage detected