Home
last modified time | relevance | path

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

/device/google/cuttlefish_common/guest/hals/gps/
Dgps_thread.cpp63 struct tm utc; in reader_call_callback() local
64 gmtime_r((time_t*)&utc_secs, &utc); in reader_call_callback()
65 D(" - time = %s", asctime(&utc)); in reader_call_callback()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/logging/
Dhandlers.py170 …init__(self, filename, when='h', interval=1, backupCount=0, encoding=None, delay=False, utc=False): argument
174 self.utc = utc
237 if self.utc:
271 if not self.utc:
331 if self.utc:
355 if (self.when == 'MIDNIGHT' or self.when.startswith('W')) and not self.utc:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_time.py153 utc='UTC+0'
162 environ['TZ'] = utc
Dtest_datetime.py2168 utc = FixedOffset(0, "UTC", -2)
2171 t2 = time(12, 47, tzinfo=utc)
2174 t5 = time(microsecond=40, tzinfo=utc)
2177 self.assertEqual(t2.tzinfo, utc)
2180 self.assertEqual(t5.tzinfo, utc)
2520 utc = FixedOffset(0, "UTC")
2523 t2 = datetime(2002, 3, 19, 12, 47, tzinfo=utc)
2526 self.assertEqual(t2.tzinfo, utc)
2647 utc = FixedOffset(0, "utc", 0)
2651 utcnow = datetime.utcnow().replace(tzinfo=utc)
[all …]
/device/generic/goldfish/gps/
Dgps_qemu.c589 struct tm utc; in nmea_reader_parse() local
609 gmtime_r( (time_t*) &timestamp, &utc ); in nmea_reader_parse()
610 p += snprintf(p, end-p, " time=%s", asctime( &utc ) ); in nmea_reader_parse()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dimaplib.py1343 utc = time.mktime(tt)
1348 lt = time.localtime(utc)
1354 return time.localtime(utc - zone)