HomeSort by relevance Sort by last modified time
    Searched refs:localtime_r (Results 51 - 75 of 125) sorted by null

1 23 4 5

  /external/syslinux/com32/lua/src/
loslib.c 67 ** where it uses gmtime_r/localtime_r
72 #define l_localtime(t,r) localtime_r(t,r)
  /external/v8/src/base/platform/
platform-solaris.cc 42 struct tm* t = localtime_r(&tv, &tm);
  /frameworks/av/media/mtp/
MtpUtils.cpp 94 localtime_r(&seconds, &tm);
97 tm.tm_mon + 1, // localtime_r uses months in 0 - 11 range
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
time.h 248 extern struct tm *localtime_r (__const time_t *__restrict __timer,
269 /* Equivalent to `asctime_r (localtime_r (timer, *TMP*), buf)'. */
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
timers.cc 186 ::localtime_r(&now, &timeinfo);
  /system/core/libutils/
ProcessCallStack.cpp 145 localtime_r(&t, &tm);
  /external/e2fsprogs/e2fsck/
logfile.c 82 localtime_r(&ctx->now, &tm_struct);
  /external/libchrome/base/time/
time_posix.cc 78 localtime_r(&t, timestruct);
  /external/libnetfilter_conntrack/src/expect/
snprintf_xml.c 87 if (localtime_r(&t, &tm) == NULL)
  /external/toybox/toys/pending/
bootchartd.c 221 localtime_r(&t, &st);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xos_r.h 902 * extern int localtime_r(const time_t *timer, struct tm *result);
916 # define _XLocaltime(t,p) (localtime_r((t),&(p)) ? NULL : &(p))
924 * extern struct tm *localtime_r(const time_t *clock, struct tm *res);
938 # define _XLocaltime(t,p) localtime_r((t),&(p))
945 * extern struct tm *localtime_r(const time_t *timer, struct tm *result);
959 # define _XLocaltime(t,p) localtime_r((t),&(p))
    [all...]
  /external/mdnsresponder/mDNSPosix/
NetMonitor.c 485 localtime_r((time_t*)&tv.tv_sec, &tm);
885 localtime_r((time_t*)&tv_start.tv_sec, &tm);
887 localtime_r((time_t*)&tv_end.tv_sec, &tm);
    [all...]
  /external/honggfuzz/libcommon/
util.c 179 localtime_r(&tm, &ltime);
  /external/iptables/utils/
nfnl_osf.c 122 localtime_r((time_t *)&tv.tv_sec, &tm);
  /frameworks/native/cmds/dumpsys/
dumpsys.cpp 443 localtime_r(&finish, &finish_tm);
  /hardware/libhardware/modules/camera/3_4/arc/
image_processor.cpp 400 localtime_r(&raw_time, &time_info);
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_dump_layers.cpp 114 localtime_r(&timeNow, &dumpTime);
  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_dump_layers.cpp 114 localtime_r(&timeNow, &dumpTime);
  /hardware/qcom/display/msm8994/libhwcomposer/
hwc_dump_layers.cpp 118 localtime_r(&timeNow, &dumpTime);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
time.h 269 __forceinline struct tm *__cdecl localtime_r(const time_t *_Time, struct tm *_Tm) { function
  /system/core/base/
logging.cpp 216 localtime_r(&t, &now);
  /system/core/liblog/
fake_log_device.c 386 ptm = localtime_r(&when, &tmBuf);
  /external/libchrome/base/third_party/nspr/
prtime.cc 96 /* Implements the Unix localtime_r() function for windows */
98 static void localtime_r(const time_t* secs, struct tm* time) { function
    [all...]
  /bionic/libc/bionic/
time64.c 42 localtime64_r() is a 64-bit equivalent of localtime_r().
62 /* Not everyone has gm/localtime_r(), provide a replacement */
64 # define LOCALTIME_R(clock, result) localtime_r(clock, result)
66 # define LOCALTIME_R(clock, result) fake_localtime_r(clock, result)
426 /* Simulate localtime_r() to the best of our ability */
659 LOCALTIME_R(&safe_time, &safe_date);
683 if( LOCALTIME_R(&safe_time, &safe_date) == NULL ) {
684 TRACE1("localtime_r(%d) returned NULL\n", (int)safe_time);
  /build/make/tools/zipalign/
ZipEntry.cpp 374 ptm = localtime_r(&even, &tmResult);

Completed in 724 milliseconds

1 23 4 5