Searched refs:tm_time (Results 1 – 3 of 3) sorted by relevance
263 struct tm tm_time; in Init() local264 localtime_s(&tm_time, &t); in Init()266 << std::setw(2) << 1 + tm_time.tm_mon in Init()267 << std::setw(2) << tm_time.tm_mday in Init()269 << std::setw(2) << tm_time.tm_hour in Init()270 << std::setw(2) << tm_time.tm_min in Init()271 << std::setw(2) << tm_time.tm_sec in Init()
672 struct tm* tm_time = &local_time; in Init() local674 << std::setw(2) << 1 + tm_time->tm_mon in Init()675 << std::setw(2) << tm_time->tm_mday in Init()677 << std::setw(2) << tm_time->tm_hour in Init()678 << std::setw(2) << tm_time->tm_min in Init()679 << std::setw(2) << tm_time->tm_sec in Init()
2010 struct tm tm_time, *tm_l, *tm_g; in kssl_check_authent() local2122 memset(&tm_time,0,sizeof(struct tm)); in kssl_check_authent()2123 if (k_gmtime(auth->ctime, &tm_time) && in kssl_check_authent()2124 ((tr = mktime(&tm_time)) != (time_t)(-1))) in kssl_check_authent()