Home | History | Annotate | Download | only in src

Lines Matching refs:time_struct

4736   const struct tm* const time_struct = localtime(&seconds);  // NOLINT
4739 const struct tm* const time_struct = localtime(&seconds); // NOLINT
4741 if (time_struct == NULL)
4745 return StreamableToString(time_struct->tm_year + 1900) + "-" +
4746 String::FormatIntWidth2(time_struct->tm_mon + 1) + "-" +
4747 String::FormatIntWidth2(time_struct->tm_mday) + "T" +
4748 String::FormatIntWidth2(time_struct->tm_hour) + ":" +
4749 String::FormatIntWidth2(time_struct->tm_min) + ":" +
4750 String::FormatIntWidth2(time_struct->tm_sec);