/third_party/jerryscript/jerry-port/default/ |
H A D | default-date.c | 55 * 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 D | time_internal.h | 37 #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 D | platform-posix-time.cc | 16 struct tm* t = localtime_r(&tv, &tm); in LocalTimezone() 26 struct tm* t = localtime_r(&tv, &tm); in LocalTimeOffset()
|
H A D | platform-aix.cc | 65 struct tm* t = localtime_r(&tv, &tm); in LocalTimezone() 76 struct tm* loc = localtime_r(&utc, &tm); in LocalTimeOffset()
|
H A D | platform-solaris.cc | 48 struct tm* t = localtime_r(&tv, &tm); in LocalTimezone()
|
/third_party/musl/libc-test/src/functionalext/supplement/time/time_gtest/ |
H A D | time_test.cpp | 334 * @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 D | private.h | 270 # 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 D | private.h | 270 # 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 D | time.h | 75 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 D | time.h | 74 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 D | time.h | 75 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 D | time.h | 79 struct tm *localtime_r (const time_t *__restrict, struct tm *__restrict); 161 __REDIR(localtime_r, __localtime64_r);
|
/third_party/musl/include/ |
H A D | time.h | 76 struct tm *localtime_r (const time_t *__restrict, struct tm *__restrict); 148 __REDIR(localtime_r, __localtime64_r);
|
/third_party/musl/src/time/ |
H A D | ctime_r.c | 5 struct tm tm, *tm_p = localtime_r(t, &tm); in ctime_r()
|
H A D | localtime_r.c | 40 weak_alias(__localtime_r, localtime_r);
|
/third_party/musl/porting/liteos_a/kernel/src/time/ |
H A D | ctime_r.c | 5 struct tm tm, *tm_p = localtime_r(t, &tm); in ctime_r()
|
H A D | localtime_r.c | 21 weak_alias(__localtime_r, localtime_r);
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/definitions/time_h/ |
H A D | 23-1-buildonly.c | 10 struct tm *localtime_r(const time_t *, struct tm *); 21 dummyvar = localtime_r; in dummyfcn()
|
/third_party/musl/compat/time32/ |
H A D | localtime32_r.c | 6 return localtime_r(&(time_t){*t}, tm); in __localtime32_r()
|
/third_party/mesa3d/src/util/ |
H A D | os_time.h | 72 return localtime_r(timer, buf); in os_localtime()
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | time.h | 87 struct tm *localtime_r(const time_t *__restrict, struct tm *__restrict);
|
/third_party/tzdata/ |
H A D | asctime.c | 123 struct tm *tmp = localtime_r(timep, &mytm); in ctime_r()
|
H A D | private.h | 621 # 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 D | los_usr_libc.c | 371 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 D | localtime_r.c | 46 localtm = localtime_r(&gTime, &res); in localtime_r_0100()
|