Home
last modified time | relevance | path

Searched refs:tm_isdst (Results 1 – 21 of 21) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/LibC/Time/
DTime.c175 tmp->tm_isdst = 0; in timesub()
351 if (yourtm.tm_isdst < 0 || mytm.tm_isdst == yourtm.tm_isdst) in time2sub()
370 if (sp->ttis[i].tt_isdst != yourtm.tm_isdst) in time2sub()
373 if (sp->ttis[j].tt_isdst == yourtm.tm_isdst) in time2sub()
380 if (mytm.tm_isdst != yourtm.tm_isdst) in time2sub()
433 if (tmp->tm_isdst > 1) in time1()
434 tmp->tm_isdst = 1; in time1()
442 if (tmp->tm_isdst < 0) in time1()
443 tmp->tm_isdst = 0; /* reset to std and try again */ in time1()
446 if (okay || tmp->tm_isdst < 0) in time1()
[all …]
Dtimegm.c107 tmp->tm_isdst = 0; in timegm()
109 if (okay || tmp->tm_isdst < 0) in timegm()
Dstrftime.c460 if (t->tm_isdst >= 0) in _fmt()
461 pt = _add(tzname[t->tm_isdst != 0], in _fmt()
474 if (t->tm_isdst < 0) in _fmt()
499 if (t->tm_isdst == 0) in _fmt()
Dstrptime.c306 tm->tm_isdst = 0; in strptime()
321 tm->tm_isdst = i; in strptime()
DTimeEfi.c40 BT->tm_isdst = -1; in Efi2Tm()
DTheory.txt110 the functions "localtime" and "gmtime" set tzname[tmp->tm_isdst]
154 tzname[localtime(&clock)->tm_isdst] to learn the correct time
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_time.py169 self.assertEqual(time.localtime(xmas2002).tm_isdst, 0)
180 self.assertEqual(time.localtime(xmas2002).tm_isdst, 0)
193 self.assertEqual(time.localtime(xmas2002).tm_isdst, 1)
Dtest_strptime.py298 self.assertEqual(strp_output.tm_isdst, 0)
300 self.assertEqual(strp_output.tm_isdst, 0)
Dtest_datetime.py961 self.assertEqual(t.tm_isdst, -1)
1576 self.assertEqual(tt.tm_isdst, -1)
2741 self.assertEqual(flag, t.tm_isdst)
2747 self.assertEqual(cls(1,1,1, tzinfo=DST(1439)).timetuple().tm_isdst, 1)
2748 self.assertEqual(cls(1,1,1, tzinfo=DST(-1439)).timetuple().tm_isdst, 1)
2789 self.assertEqual(0, t.tm_isdst)
2804 self.assertEqual(t.tm_isdst, 0)
2816 self.assertEqual(t.tm_isdst, 0)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dtimemodule.c264 SET(8, p->tm_isdst); in tmtotuple()
363 &p->tm_isdst)) in gettmarg()
476 if (buf.tm_isdst < -1) in time_strftime()
477 buf.tm_isdst = -1; in time_strftime()
478 else if (buf.tm_isdst > 1) in time_strftime()
479 buf.tm_isdst = 1; in time_strftime()
Dzipimport.c1077 stm.tm_isdst = -1; /* wday/yday is ignored */ in parse_dostime()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dtimemodule.c264 SET(8, p->tm_isdst); in tmtotuple()
363 &p->tm_isdst)) in gettmarg()
476 if (buf.tm_isdst < -1) in time_strftime()
477 buf.tm_isdst = -1; in time_strftime()
478 else if (buf.tm_isdst > 1) in time_strftime()
479 buf.tm_isdst = 1; in time_strftime()
Dzipimport.c1049 stm.tm_isdst = -1; /* wday/yday is ignored */ in parse_dostime()
/device/linaro/bootloader/edk2/StdLib/Include/
Dtime.h150 int tm_isdst; // Daylight Saving Time flag member
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dloslib.c217 setboolfield(L, "isdst", stm->tm_isdst); in os_date()
255 ts.tm_isdst = getboolfield(L, "isdst"); in os_time()
/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
DTimerWrapper.c160 GmTime->tm_isdst = 0; in gmtime()
/device/linaro/bootloader/arm-trusted-firmware/include/stdlib/
Dtime.h134 int tm_isdst; /* Daylight Savings Time flag */ member
/device/linaro/bootloader/edk2/CryptoPkg/Include/
DOpenSslSupport.h134 int tm_isdst; /* Daylight Savings Time flag */ member
/device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/
DEmuThunk.c374 | (tm->tm_isdst > 0 ? EFI_TIME_IN_DAYLIGHT : 0); in SecGetTime()
DPosixFileSystem.c230 …Time->Daylight = (daylight ? EFI_TIME_ADJUST_DAYLIGHT : 0) | (tm->tm_isdst > 0 ? EFI_TIME_IN_DAYLI… in PosixSystemTimeToEfiTime()
1358 NewLastAccessSystemTime.tm_isdst = 0; in PosixFileSetInfo()
1368 NewLastWriteSystemTime.tm_isdst = 0; in PosixFileSetInfo()
/device/generic/goldfish/gps/
Dgps_qemu.c278 tm.tm_isdst = -1; in nmea_reader_update_time()