/external/ltp/testcases/open_posix_testsuite/conformance/definitions/time_h/ |
21-1-buildonly.c | 10 struct tm *gmtime_r(const time_t *, struct tm *); 21 dummyvar = gmtime_r;
|
/external/skia/src/core/ |
SkTime.cpp | 57 gmtime_r(&m_time, &tstruct);
|
/external/skqp/src/core/ |
SkTime.cpp | 57 gmtime_r(&m_time, &tstruct);
|
/external/icu/icu4c/source/tools/tzcode/ |
private.h | 266 # undef gmtime_r macro 267 # define gmtime_r tz_gmtime_r macro 285 struct tm *gmtime_r(time_t const *restrict, struct tm *restrict);
|
/bionic/libc/tzcode/ |
private.h | 340 # undef gmtime_r macro 341 # define gmtime_r tz_gmtime_r macro 385 struct tm *gmtime_r(time_t const *restrict, struct tm *restrict);
|
/bionic/libc/include/ |
time.h | 75 struct tm* gmtime_r(const time_t* __t, struct tm* __tm);
|
/bionic/tests/headers/posix/ |
time_h.c | 91 FUNCTION(gmtime_r, struct tm* (*f)(const time_t*, struct tm*));
|
/device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/ |
time.h | 183 struct tm *gmtime_r(const time_t *, struct tm *);
|
/external/boringssl/src/crypto/asn1/ |
time_support.c | 59 #define _POSIX_C_SOURCE 201410L /* for gmtime_r */ 76 return gmtime_r(time, result);
|
/external/toybox/toys/other/ |
hwclock.c | 105 if (!(TT.utc ? gmtime_r : localtime_r)(&timeval.tv_sec, &tm)) 106 error_exit(TT.utc ? "gmtime_r failed" : "localtime_r failed");
|
/device/linaro/bootloader/edk2/CryptoPkg/Include/ |
OpenSslSupport.h | 246 struct tm *gmtime_r (const time_t *, struct tm *);
282 #define gmtime_r(timer,result) (result = NULL)
macro
|
/external/libchrome/base/time/ |
time_exploded_posix.cc | 101 gmtime_r(&t, timestruct); 120 gmtime_r(&t, timestruct);
|
/external/linux-kselftest/tools/testing/selftests/rtc/ |
rtctest.c | 125 gmtime_r(&secs, (struct tm *)&tm); 182 gmtime_r(&secs, (struct tm *)&alarm.time);
|
/external/webrtc/webrtc/base/ |
timeutils.cc | 115 // Emulate POSIX gmtime_r(). 116 static struct tm *gmtime_r(const time_t *timep, struct tm *result) { function in namespace:rtc 134 gmtime_r(&secs, tm);
|
timeutils_unittest.cc | 244 // Check consistency with the system gmtime_r. With time_t, we can only 254 EXPECT_TRUE(gmtime_r(&t, &tm));
|
/device/google/cuttlefish_common/guest/hals/gps/ |
gps_thread.cpp | 64 gmtime_r((time_t*)&utc_secs, &utc);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
loslib.c | 64 ** where it uses gmtime_r/localtime_r
68 #define l_gmtime(t,r) gmtime_r(t,r)
|
/external/curl/lib/ |
parsedate.c | 577 * gmtime_r() or gmtime() functions anywhere else but here. 586 tm = (struct tm *)gmtime_r(&intime, store);
|
curl_setup.h | 507 extern struct tm *gmtime_r(const time_t * const timep, struct tm *tmp);
|
/external/google-benchmark/src/ |
timers.cc | 204 ::gmtime_r(&now, &timeinfo);
|
/external/libcxx/utils/google-benchmark/src/ |
timers.cc | 204 ::gmtime_r(&now, &timeinfo);
|
/device/google/cuttlefish_common/guest/hals/camera/ |
Exif.cpp | 50 #define TIMESTAMP_TO_TM(timestamp, tm) gmtime_r(timestamp, tm)
|
/external/e2fsprogs/e2fsck/ |
logfile.c | 81 tm = (*flags & FLAG_UTC) ? gmtime_r(&ctx->now, &tm_struct) :
|
/external/libevent/ |
evutil_time.c | 168 gmtime_r(&t, &sys);
|
/external/lua/src/ |
loslib.c | 81 ** where it uses gmtime_r/localtime_r 86 #define l_gmtime(t,r) gmtime_r(t,r)
|