Home
last modified time | relevance | path

Searched refs:localtime_r (Results 1 - 25 of 80) sorted by relevance

1234

/third_party/jerryscript/jerry-port/default/
H A Ddefault-date.c55 * of 'struct tm' (a GNU extension) filled by 'localtime_r' if available on the
67 localtime_r (&now, &tm); in jerry_port_get_local_time_zone_adjustment()
71 localtime_r (&now, &tm); in jerry_port_get_local_time_zone_adjustment()
78 localtime_r (&now, &tm); in jerry_port_get_local_time_zone_adjustment()
82 localtime_r (&now, &tm); in jerry_port_get_local_time_zone_adjustment()
/third_party/ffmpeg/libavutil/
H A Dtime_internal.h37 #if !HAVE_LOCALTIME_R && !defined(localtime_r)
46 #define localtime_r ff_localtime_r macro
/third_party/node/deps/v8/src/base/platform/
H A Dplatform-posix-time.cc16 struct tm* t = localtime_r(&tv, &tm); in LocalTimezone()
26 struct tm* t = localtime_r(&tv, &tm); in LocalTimeOffset()
H A Dplatform-aix.cc65 struct tm* t = localtime_r(&tv, &tm); in LocalTimezone()
76 struct tm* loc = localtime_r(&utc, &tm); in LocalTimeOffset()
H A Dplatform-solaris.cc48 struct tm* t = localtime_r(&tv, &tm); in LocalTimezone()
/third_party/musl/libc-test/src/functionalext/supplement/time/time_gtest/
H A Dtime_test.cpp334 * @tc.desc: Determine when the time zone is "Asia/Shanghai" When "localtime_r" Can correctly return to local time
344 ASSERT_NE(localtime_r(&tim, &tm), nullptr); in HWTEST_F()
350 * @tc.desc: Determine when the time zone is "America/Los_Angeles" When "localtime_r" Can correctly return to local time
359 ASSERT_NE(localtime_r(&tim, &tm), nullptr); in HWTEST_F()
365 * @tc.desc: Determine when the time zone is "Europe/London" When "localtime_r" Can correctly return to local time
374 ASSERT_NE(localtime_r(&tim, &tm), nullptr); in HWTEST_F()
380 * @tc.desc: Determine when the time zone is "Pacific/Apia" When "localtime_r" Can correctly return to local time
389 ASSERT_NE(localtime_r(&tim, &tm), nullptr); in HWTEST_F()
395 * @tc.desc: Determine when the time zone is "Pacific/Honolulu" When "localtime_r" Can correctly return to local time
404 ASSERT_NE(localtime_r( in HWTEST_F()
[all...]
/third_party/icu/icu4c/source/tools/tzcode/
H A Dprivate.h270 # undef localtime_r macro
271 # define localtime_r tz_localtime_r macro
287 struct tm *localtime_r(time_t const *restrict, struct tm *restrict);
/third_party/skia/third_party/externals/icu/source/tools/tzcode/
H A Dprivate.h270 # undef localtime_r macro
271 # define localtime_r tz_localtime_r macro
287 struct tm *localtime_r(time_t const *restrict, struct tm *restrict);
/third_party/musl/porting/uniproton/kernel/include/
H A Dtime.h75 struct tm *localtime_r (const time_t *__restrict, struct tm *__restrict);
146 __REDIR(localtime_r, __localtime64_r);
/third_party/musl/porting/liteos_m/user/include/
H A Dtime.h74 struct tm *localtime_r (const time_t *__restrict, struct tm *__restrict);
145 __REDIR(localtime_r, __localtime64_r);
/third_party/musl/porting/liteos_m/kernel/include/
H A Dtime.h75 struct tm *localtime_r (const time_t *__restrict, struct tm *__restrict);
146 __REDIR(localtime_r, __localtime64_r);
/third_party/musl/porting/liteos_a/kernel/include/
H A Dtime.h79 struct tm *localtime_r (const time_t *__restrict, struct tm *__restrict);
161 __REDIR(localtime_r, __localtime64_r);
/third_party/musl/include/
H A Dtime.h76 struct tm *localtime_r (const time_t *__restrict, struct tm *__restrict);
148 __REDIR(localtime_r, __localtime64_r);
/third_party/musl/src/time/
H A Dctime_r.c5 struct tm tm, *tm_p = localtime_r(t, &tm); in ctime_r()
H A Dlocaltime_r.c40 weak_alias(__localtime_r, localtime_r);
/third_party/musl/porting/liteos_a/kernel/src/time/
H A Dctime_r.c5 struct tm tm, *tm_p = localtime_r(t, &tm); in ctime_r()
H A Dlocaltime_r.c21 weak_alias(__localtime_r, localtime_r);
/third_party/ltp/testcases/open_posix_testsuite/conformance/definitions/time_h/
H A D23-1-buildonly.c10 struct tm *localtime_r(const time_t *, struct tm *);
21 dummyvar = localtime_r; in dummyfcn()
/third_party/musl/compat/time32/
H A Dlocaltime32_r.c6 return localtime_r(&(time_t){*t}, tm); in __localtime32_r()
/third_party/mesa3d/src/util/
H A Dos_time.h72 return localtime_r(timer, buf); in os_localtime()
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
H A Dtime.h87 struct tm *localtime_r(const time_t *__restrict, struct tm *__restrict);
/third_party/tzdata/
H A Dasctime.c123 struct tm *tmp = localtime_r(timep, &mytm); in ctime_r()
H A Dprivate.h621 # undef localtime_r macro
622 # define localtime_r tz_localtime_r macro
695 struct tm *localtime_r(time_t const *restrict, struct tm *restrict);
/third_party/musl/porting/liteos_m/user/hook/
H A Dlos_usr_libc.c371 struct tm *localtime_r(const time_t *timep, struct tm *result) in localtime_r() function
373 return g_usrLibc->localtime_r(timep, result); in localtime_r()
378 return localtime_r(timer, NULL); in localtime()
/third_party/musl/libc-test/src/functionalext/time/
H A Dlocaltime_r.c46 localtm = localtime_r(&gTime, &res); in localtime_r_0100()

Completed in 10 milliseconds

1234