HomeSort by: relevance | last modified time | path
    Searched refs:tzoff (Results 1 - 2 of 2) sorted by relevancy

  /src/lib/libutil/compat/
compat_parsedate.c 54 parsedate(const char *str, const int32_t *t50, const int *tzoff)
59 return (int32_t)__parsedate50(str, t50 ? &t : NULL, tzoff);
  /src/tests/lib/libutil/
t_parsedate.c 247 int tzoff; local in function:ATF_TC_BODY
273 tzoff = -60; /* British Summer Time */
274 parsecheck("14:00", &t, &tzoff, localtime_r,
486 int tzoff; local in function:ATF_TC_BODY
496 tzoff = 0;
497 ATF_CHECK(parsedate("@0", NULL, &tzoff) == (time_t)0);
498 tzoff = 3600;
499 ATF_CHECK(parsedate("@0", NULL, &tzoff) == (time_t)0);
500 tzoff = -3600;
501 ATF_CHECK(parsedate("@0", NULL, &tzoff) == (time_t)0)
    [all...]

Completed in 11 milliseconds