Searched refs:mLogTs (Results 1 – 2 of 2) sorted by relevance
50 mLogTs.tv_sec = MIN_TIME_BETWEEN_LOGS_SEC; in threadLoop()51 mLogTs.tv_nsec = 0; in threadLoop()83 mLogTs.tv_sec += sec; in threadLoop()84 if ((mLogTs.tv_nsec += nsec) >= 1000000000) { in threadLoop()85 mLogTs.tv_sec++; in threadLoop()86 mLogTs.tv_nsec -= 1000000000; in threadLoop()90 if (mLogTs.tv_sec >= MIN_TIME_BETWEEN_LOGS_SEC) { in threadLoop()95 mLogTs.tv_sec = 0; in threadLoop()96 mLogTs.tv_nsec = 0; in threadLoop()
52 mLogTs.tv_sec = MIN_TIME_BETWEEN_LOGS_SEC; in Thread()53 mLogTs.tv_nsec = 0; in Thread()78 struct timespec mLogTs; // time since last log variable