Home | History | Annotate | Download | only in src

Lines Matching refs:time_struct

3228   const struct tm* const time_struct = localtime(&seconds);  // NOLINT
3231 const struct tm* const time_struct = localtime(&seconds); // NOLINT
3233 if (time_struct == NULL)
3237 return StreamableToString(time_struct->tm_year + 1900) + "-" +
3238 String::FormatIntWidth2(time_struct->tm_mon + 1) + "-" +
3239 String::FormatIntWidth2(time_struct->tm_mday) + "T" +
3240 String::FormatIntWidth2(time_struct->tm_hour) + ":" +
3241 String::FormatIntWidth2(time_struct->tm_min) + ":" +
3242 String::FormatIntWidth2(time_struct->tm_sec);