Searched refs:tstruct (Results 1 – 2 of 2) sorted by relevance
22 struct tm* tstruct; in GetDateTime() local23 tstruct = localtime(&m_time); in GetDateTime()24 int offset = tstruct->tm_isdst == 1 ? 60 : 0; in GetDateTime()28 dt->fYear = tstruct->tm_year + 1900; in GetDateTime()29 dt->fMonth = SkToU8(tstruct->tm_mon + 1); in GetDateTime()30 dt->fDayOfWeek = SkToU8(tstruct->tm_wday); in GetDateTime()31 dt->fDay = SkToU8(tstruct->tm_mday); in GetDateTime()32 dt->fHour = SkToU8(tstruct->tm_hour); in GetDateTime()33 dt->fMinute = SkToU8(tstruct->tm_min); in GetDateTime()34 dt->fSecond = SkToU8(tstruct->tm_sec); in GetDateTime()
726 struct tm * tstruct; in xmlMemDisplay() local740 tstruct = localtime(¤tTime); in xmlMemDisplay()741 strftime(buf, sizeof(buf) - 1, "%I:%M:%S %p", tstruct); in xmlMemDisplay()