HomeSort by relevance Sort by last modified time
    Searched refs:gmtime_r (Results 1 - 25 of 54) sorted by null

1 2 3

  /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/toybox/toys/posix/
date.c 83 gmtime_r(&tt, tm);
184 ((toys.optflags & FLAG_u) ? gmtime_r : localtime_r)(&ts.tv_sec, &tm);
  /external/skia/src/core/
SkTime.cpp 54 gmtime_r(&m_time, &tstruct);
  /external/skqp/src/core/
SkTime.cpp 54 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 103 if (!(TT.utc ? gmtime_r : localtime_r)(&timeval.tv_sec, &tm))
104 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/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 564 * gmtime_r() or gmtime() functions anywhere else but here.
573 tm = (struct tm *)gmtime_r(&intime, store);
curl_setup.h 470 extern struct tm *gmtime_r(const time_t * const timep, struct tm *tmp);
  /external/google-benchmark/src/
timers.cc 199 ::gmtime_r(&now, &timeinfo);
  /external/libcxx/utils/google-benchmark/src/
timers.cc 199 ::gmtime_r(&now, &timeinfo);
  /external/libmicrohttpd/src/examples/
spdy_fileserver.c 92 gmtime_r( &t, &tm);
  /external/syslinux/com32/lua/src/
loslib.c 67 ** where it uses gmtime_r/localtime_r
71 #define l_gmtime(t,r) gmtime_r(t,r)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
time.h 243 extern struct tm *gmtime_r (__const time_t *__restrict __timer,
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
timers.cc 195 ::gmtime_r(&now, &timeinfo);
  /device/google/cuttlefish_common/guest/hals/camera/
Exif.cpp 50 #define TIMESTAMP_TO_TM(timestamp, tm) gmtime_r(timestamp, tm)

Completed in 550 milliseconds

1 2 3