/third_party/tzdata/ |
H A D | asctime.c | 1 /* asctime and asctime_r a la POSIX and ISO C, except pad years before 1000. */ 64 asctime_r(struct tm const *restrict timeptr, char *restrict buf) in asctime_r() function 116 return asctime_r(timeptr, buf_asctime); in asctime() 124 return tmp ? asctime_r(tmp, buf) : NULL; in ctime_r()
|
H A D | private.h | 149 # define asctime_r _incompatible_asctime_r macro 155 /* Fix asctime_r on Solaris 11. */ 607 # undef asctime_r macro 608 # define asctime_r tz_asctime_r macro 682 char *asctime_r(struct tm const *restrict, char *restrict); 716 #if !HAVE_DECL_ASCTIME_R && !defined asctime_r 717 extern char *asctime_r(struct tm const *restrict, char *restrict); 948 #undef asctime_r macro 950 char *asctime_r(struct tm const *restrict, char *restrict);
|
/third_party/icu/icu4c/source/tools/tzcode/ |
H A D | private.h | 70 #define asctime_r _incompatible_asctime_r macro 239 ** Some time.h implementations don't declare asctime_r. 244 #ifndef asctime_r 245 extern char * asctime_r(struct tm const *, char *); 385 #undef asctime_r macro 387 char *asctime_r(struct tm const *, char *);
|
H A D | asctime.c | 72 asctime_r(register const struct tm *timeptr, char *buf) in asctime_r() function 131 return asctime_r(timeptr, buf_asctime); in asctime()
|
H A D | localtime.c | 1563 return asctime_r(localtime_r(timep, &mytm), buf); in ctime_r()
|
/third_party/skia/third_party/externals/icu/source/tools/tzcode/ |
H A D | private.h | 70 #define asctime_r _incompatible_asctime_r macro 239 ** Some time.h implementations don't declare asctime_r. 244 #ifndef asctime_r 245 extern char * asctime_r(struct tm const *, char *); 393 #undef asctime_r macro 395 char *asctime_r(struct tm const *, char *);
|
H A D | asctime.c | 72 asctime_r(register const struct tm *timeptr, char *buf) in asctime_r() function 131 return asctime_r(timeptr, buf_asctime); in asctime()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/definitions/time_h/ |
H A D | 9-1-buildonly.c | 10 char *asctime_r(const struct tm *, char *); 21 dummyvar = asctime_r; in dummyfcn()
|
/third_party/musl/src/time/ |
H A D | ctime_r.c | 6 return tm_p ? asctime_r(tm_p, buf) : 0; in ctime_r()
|
H A D | asctime_r.c | 17 * even if it will not fit in the buffer. Thus asctime_r in __asctime_r() 28 weak_alias(__asctime_r, asctime_r);
|
/third_party/musl/porting/liteos_a/kernel/src/time/ |
H A D | ctime_r.c | 6 return tm_p ? asctime_r(tm_p, buf) : 0; in ctime_r()
|
H A D | asctime_r.c | 17 * even if it will not fit in the buffer. Thus asctime_r in __asctime_r() 28 weak_alias(__asctime_r, asctime_r);
|
/third_party/musl/porting/liteos_m/kernel/src/time/ |
H A D | asctime_r.c | 17 * even if it will not fit in the buffer. Thus asctime_r in __asctime_r() 28 weak_alias(__asctime_r, asctime_r);
|
/third_party/musl/porting/uniproton/kernel/src/time/ |
H A D | asctime_r.c | 17 * even if it will not fit in the buffer. Thus asctime_r in __asctime_r() 28 weak_alias(__asctime_r, asctime_r);
|
/third_party/musl/libc-test/src/functionalext/time/ |
H A D | asctime_r.c | 59 char *returnStr = asctime_r(timeptr, s); in asctime_r_0100()
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | time.h | 76 char *asctime_r (const struct tm *__restrict, char *__restrict);
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | time.h | 75 char *asctime_r (const struct tm *__restrict, char *__restrict);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | time.h | 76 char *asctime_r (const struct tm *__restrict, char *__restrict);
|
/third_party/musl/libc-test/src/api/ |
H A D | time.c | 56 {char*(*p)(const struct tm*restrict,char*restrict) = asctime_r;} in f()
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | time.h | 80 char *asctime_r (const struct tm *__restrict, char *__restrict);
|
/third_party/musl/include/ |
H A D | time.h | 78 char *asctime_r (const struct tm *__restrict, char *__restrict);
|
/third_party/musl/libc-test/src/functionalext/supplement/time/time_gtest/ |
H A D | time_test.cpp | 425 * @tc.desc: Verify that the asctime_r function correctly converts a struct tm representation of a time into a 434 char* result = asctime_r(&tm, buf); in HWTEST_F()
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/musl/ |
H A D | mod.rs | 772 pub fn asctime_r(tm: *const ::tm, buf: *mut ::c_char) -> *mut ::c_char; in asctime_r() functions
|
/third_party/rust/crates/libc/src/solid/ |
H A D | mod.rs | 810 pub fn asctime_r(arg1: *const tm, arg2: *mut c_char) -> *mut c_char; in asctime_r() functions
|
/third_party/rust/crates/libc/src/ |
H A D | wasi.rs | 514 pub fn asctime_r(a: *const tm, b: *mut c_char) -> *mut c_char; in asctime_r() functions
|