Home
last modified time | relevance | path

Searched refs:timep (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/compiler-rt/lib/dfsan/
H A Ddfsan_custom.cpp880 char *ret = ctime_r(timep, buf); in __dfsw_ctime_r()
882 dfsan_set_label(dfsan_read_label(timep, sizeof(time_t)), buf, in __dfsw_ctime_r()
896 char *ret = ctime_r(timep, buf); in __dfso_ctime_r()
899 dfsan_read_label(timep, sizeof(time_t)), in __dfso_ctime_r()
900 dfsan_read_origin_of_first_taint(timep, sizeof(time_t)), buf, in __dfso_ctime_r()
1349 struct tm *__dfsw_localtime_r(const time_t *timep, struct tm *result, in __dfsw_localtime_r() argument
1352 struct tm *ret = localtime_r(timep, result); in __dfsw_localtime_r()
1354 dfsan_set_label(dfsan_read_label(timep, sizeof(time_t)), result, in __dfsw_localtime_r()
1364 struct tm *__dfso_localtime_r(const time_t *timep, struct tm *result, in __dfso_localtime_r() argument
1369 struct tm *ret = localtime_r(timep, result); in __dfso_localtime_r()
[all …]
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/concurrency/
H A Dmt-unsafe.rst31 tm = gmtime(timep); // uses a global buffer
/llvm-project-15.0.7/clang/test/Analysis/
H A Dstd-c-library-functions-POSIX.c264 char *ctime_r(const time_t *timep, char *buf);
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc1425 __sanitizer_tm *res = REAL(localtime)(timep);
1427 COMMON_INTERCEPTOR_READ_RANGE(ctx, timep, sizeof(*timep));
1437 COMMON_INTERCEPTOR_READ_RANGE(ctx, timep, sizeof(*timep));
1445 __sanitizer_tm *res = REAL(gmtime)(timep);
1447 COMMON_INTERCEPTOR_READ_RANGE(ctx, timep, sizeof(*timep));
1457 COMMON_INTERCEPTOR_READ_RANGE(ctx, timep, sizeof(*timep));
1464 COMMON_INTERCEPTOR_ENTER(ctx, ctime, timep);
1468 char *res = REAL(ctime)(timep);
1470 COMMON_INTERCEPTOR_READ_RANGE(ctx, timep, sizeof(*timep));
1481 char *res = REAL(ctime_r)(timep, result);
[all …]