Searched refs:GetMilliSeconds (Results 1 – 5 of 5) sorted by relevance
52 …. (took %lldms)\n", (nn::os::Tick::GetSystemCurrent() - tickStart).ToTimeSpan().GetMilliSeconds()); in SetupDaemonsDefault()
248 …DateTime& operator+=(const TimeSpan& rhs) { this->m_MilliSeconds += rhs.GetMilliSeconds(); return …258 …DateTime& operator-=(const TimeSpan& rhs) { this->m_MilliSeconds -= rhs.GetMilliSeconds(); return …
156 s64 GetMilliSeconds() const { return m_NanoSeconds / (1000 * 1000); } in GetMilliSeconds() function
309 return nn::os::Tick::GetSystemCurrent().ToTimeSpan().GetMilliSeconds();
218 s64 msec = nn::os::Tick::GetSystemCurrent().ToTimeSpan().GetMilliSeconds(); in PrintLog()