Home | History | Annotate | Download | only in src

Lines Matching refs:time_struct

3223   struct tm time_struct;
3225 if (localtime_s(&time_struct, &seconds) != 0)
3228 if (localtime_r(&seconds, &time_struct) == NULL)
3233 return StreamableToString(time_struct.tm_year + 1900) + "-" +
3234 String::FormatIntWidth2(time_struct.tm_mon + 1) + "-" +
3235 String::FormatIntWidth2(time_struct.tm_mday) + "T" +
3236 String::FormatIntWidth2(time_struct.tm_hour) + ":" +
3237 String::FormatIntWidth2(time_struct.tm_min) + ":" +
3238 String::FormatIntWidth2(time_struct.tm_sec);