Home
last modified time | relevance | path

Searched refs:time_struct (Results 1 – 2 of 2) sorted by relevance

/freebsd/sbin/camcontrol/
H A Dtimestamp.c249 struct tm time_struct; in set_timestamp() local
274 bzero(&time_struct, sizeof(struct tm)); in set_timestamp()
276 &time_struct) == NULL) { in set_timestamp()
281 time_value = mktime(&time_struct); in set_timestamp()
/freebsd/contrib/googletest/googletest/src/
H A Dgtest.cc4187 struct tm time_struct; in FormatEpochTimeInMillisAsIso8601() local
4188 if (!PortableLocaltime(static_cast<time_t>(ms / 1000), &time_struct)) in FormatEpochTimeInMillisAsIso8601()
4191 return StreamableToString(time_struct.tm_year + 1900) + "-" + in FormatEpochTimeInMillisAsIso8601()
4192 String::FormatIntWidth2(time_struct.tm_mon + 1) + "-" + in FormatEpochTimeInMillisAsIso8601()
4193 String::FormatIntWidth2(time_struct.tm_mday) + "T" + in FormatEpochTimeInMillisAsIso8601()
4194 String::FormatIntWidth2(time_struct.tm_hour) + ":" + in FormatEpochTimeInMillisAsIso8601()
4195 String::FormatIntWidth2(time_struct.tm_min) + ":" + in FormatEpochTimeInMillisAsIso8601()
4196 String::FormatIntWidth2(time_struct.tm_sec) + "." + in FormatEpochTimeInMillisAsIso8601()
4639 struct tm time_struct; in FormatEpochTimeInMillisAsRFC3339() local
4640 if (!PortableLocaltime(static_cast<time_t>(ms / 1000), &time_struct)) in FormatEpochTimeInMillisAsRFC3339()
[all …]