Searched refs:time_struct (Results 1 – 1 of 1) sorted by relevance
4712 const struct tm* const time_struct = localtime(&seconds); // NOLINT in FormatEpochTimeInMillisAsIso8601() local4715 const struct tm* const time_struct = localtime(&seconds); // NOLINT in FormatEpochTimeInMillisAsIso8601() local4717 if (time_struct == NULL) in FormatEpochTimeInMillisAsIso8601()4721 return StreamableToString(time_struct->tm_year + 1900) + "-" + in FormatEpochTimeInMillisAsIso8601()4722 String::FormatIntWidth2(time_struct->tm_mon + 1) + "-" + in FormatEpochTimeInMillisAsIso8601()4723 String::FormatIntWidth2(time_struct->tm_mday) + "T" + in FormatEpochTimeInMillisAsIso8601()4724 String::FormatIntWidth2(time_struct->tm_hour) + ":" + in FormatEpochTimeInMillisAsIso8601()4725 String::FormatIntWidth2(time_struct->tm_min) + ":" + in FormatEpochTimeInMillisAsIso8601()4726 String::FormatIntWidth2(time_struct->tm_sec); in FormatEpochTimeInMillisAsIso8601()