Home
last modified time | relevance | path

Searched refs:tzoff (Results 1 – 6 of 6) sorted by relevance

/external/curl/lib/
Dparsedate.c316 int tzoff = -1; in parsedate() local
347 if(!found && (tzoff == -1)) { in parsedate()
349 tzoff = checktz(buf); in parsedate()
350 if(tzoff != -1) in parsedate()
398 if((tzoff == -1) && in parsedate()
412 tzoff = (val/100 * 60 + val%100)*60; in parsedate()
416 tzoff = date[-1]=='+'?-tzoff:tzoff; in parsedate()
515 if(tzoff == -1) in parsedate()
516 tzoff = 0; in parsedate()
518 if((tzoff > 0) && (t > TIME_T_MAX - tzoff)) { in parsedate()
[all …]
/external/ppp/pppd/include/
Dpcap-int.h72 int tzoff; /* timezone offset */ member
/external/libpcap/
Drpcap-protocol.h262 int32 tzoff; /* Timezone offset - not used by newer clients */ member
/external/python/cpython3/Lib/
Ddatetime.py1408 tzoff = t.utcoffset()
1409 if not tzoff: # zero or None
1412 h, m = divmod(timedelta(hours=self.hour, minutes=self.minute) - tzoff,
2151 tzoff = t.utcoffset()
2152 if tzoff is None:
2157 self._hashcode = hash(timedelta(days, seconds, self.microsecond) - tzoff)
/external/python/dateutil/dateutil/test/
Dtest_tz.py1005 def test_tzlocal_offset_equal(tzvar, tzoff): argument
1008 assert tz.tzlocal() == tzoff
1009 assert not (tz.tzlocal() != tzoff)
1020 def test_tzlocal_offset_unequal(tzvar, tzoff): argument
1023 assert tz.tzlocal() != tzoff
1024 assert not (tz.tzlocal() == tzoff)
/external/libpcap/rpcapd/
Ddaemon.c1903 openreply->tzoff = 0; in daemon_msg_open_req()