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

1 2

  /external/clearsilver/util/
missing.c 76 struct tm *gmtime_r(const time_t *timep, struct tm *ttm) function
neo_date.c 103 gmtime_r(&tt, &gmt_tm);
neo_misc.h 78 struct tm *gmtime_r(const time_t *timep, struct tm *ttm);
  /system/core/toolbox/
alarm.c 84 gmtime_r(&t, &tm);
121 gmtime_r(&ts.tv_sec, &tm);
date.c 83 gmtime_r(&t, &tm);
  /bionic/libc/include/
time.h 77 extern struct tm* gmtime_r(const time_t *timep, struct tm *result);
  /development/ndk/platforms/android-3/include/
time.h 77 extern struct tm* gmtime_r(const time_t *timep, struct tm *result);
  /development/ndk/platforms/android-8/include/
time.h 77 extern struct tm* gmtime_r(const time_t *timep, struct tm *result);
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
time.h 77 extern struct tm* gmtime_r(const time_t *timep, struct tm *result);
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
time.h 77 extern struct tm* gmtime_r(const time_t *timep, struct tm *result);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
time.h 77 extern struct tm* gmtime_r(const time_t *timep, struct tm *result);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
time.h 77 extern struct tm* gmtime_r(const time_t *timep, struct tm *result);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
time.h 77 extern struct tm* gmtime_r(const time_t *timep, struct tm *result);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
time.h 77 extern struct tm* gmtime_r(const time_t *timep, struct tm *result);
  /external/openssl/crypto/
o_time.c 79 #if defined(OPENSSL_THREADS) && !defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_SYS_OS2) && (!defined(OPENSSL_SYS_VMS) || defined(gmtime_r)) && !defined(OPENSSL_SYS_MACOSX) && !defined(OPENSSL_SYS_SUNOS)
82 gmtime_r(timer,result);
142 /* Since there was no gmtime_r() to do this stuff for us,
  /external/chromium/base/
time_posix.cc 134 gmtime_r(&seconds, &timestruct);
  /external/webkit/WebCore/loader/
FTPDirectoryParser.cpp 42 // Replacement for gmtime_r() which is not available on MinGW.
70 #define gmtime_r(x, y) gmtimeQt(x, y) macro
71 #elif OS(WINDOWS) && !defined(gmtime_r)
73 #define gmtime_r(x, y) gmtime_s((y), (x))
75 #define gmtime_r(x,y) (gmtime(x)?(*(y)=*gmtime(x),(y)):0)
195 gmtime_r(&t, &result.modifiedTime);
    [all...]
  /external/bluetooth/glib/glib/
gtimer.c 431 tm = gmtime_r (&secs, &tm_);
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/X11/
Xos_r.h 962 * extern int gmtime_r(const time_t *timer, struct tm *result);
976 # define _XGmtime(t,p) (gmtime_r((t),&(p)) ? NULL : &(p))
984 * extern struct tm *gmtime_r(const time_t *clock, struct tm *res);
998 # define _XGmtime(t,p) gmtime_r((t),&(p))
1006 * extern struct tm *gmtime_r(const time_t *timer, struct tm *result);
1026 # define _XGmtime(t,p) gmtime_r((t),&(p))
    [all...]
  /sdk/emulator/gps/
gps_qemu.c 202 gmtime_r( &now, &tm_utc );
264 gmtime_r( &now, &tm );
514 gmtime_r( (time_t*) &r->fix.timestamp, &utc );
  /bionic/libc/bionic/
time64.c 40 gmtime64_r() is a 64-bit equivalent of gmtime_r().
65 # define GMTIME_R(clock, result) gmtime_r(clock, result)
67 # define GMTIME_R(clock, result) fake_gmtime_r(clock, result)
449 /* Simulate gmtime_r() to the best of our ability */
537 GMTIME_R(&safe_time, &safe_date);
  /bionic/libc/tzcode/
localtime.c 1498 gmtime_r(timep, tmp) function
    [all...]
  /bionic/libc/netbsd/resolv/
res_debug.c 1118 mytime = gmtime_r(&myclock, &res);
  /external/chromium/third_party/icu/source/tools/tzcode/
localtime.c 1398 gmtime_r(timep, tmp) function
    [all...]
  /external/icu4c/tools/tzcode/
localtime.c 1398 gmtime_r(timep, tmp) function
    [all...]

Completed in 274 milliseconds

1 2