Searched refs:tstruct (Results 1 – 4 of 4) sorted by relevance
56 struct tm tstruct; in GetDateTime() local57 gmtime_r(&m_time, &tstruct); in GetDateTime()59 dt->fYear = tstruct.tm_year + 1900; in GetDateTime()60 dt->fMonth = SkToU8(tstruct.tm_mon + 1); in GetDateTime()61 dt->fDayOfWeek = SkToU8(tstruct.tm_wday); in GetDateTime()62 dt->fDay = SkToU8(tstruct.tm_mday); in GetDateTime()63 dt->fHour = SkToU8(tstruct.tm_hour); in GetDateTime()64 dt->fMinute = SkToU8(tstruct.tm_min); in GetDateTime()65 dt->fSecond = SkToU8(tstruct.tm_sec); in GetDateTime()
765 struct tm * tstruct; in xmlMemDisplay() local779 tstruct = localtime(¤tTime); in xmlMemDisplay()780 strftime(buf, sizeof(buf) - 1, "%I:%M:%S %p", tstruct); in xmlMemDisplay()
134457 struct tm * tstruct;134468 tstruct = localtime(¤tTime);134469 strftime(buf, sizeof(buf) - 1, "%I:%M:%S %p", tstruct);