Searched refs:resolved_path (Results 1 – 4 of 4) sorted by relevance
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/dd/ |
H A D | dd_interceptors.cc | 226 INTERCEPTOR(char*, realpath, const char *path, char *resolved_path) { in INTERCEPTOR() argument 228 return REAL(realpath)(path, resolved_path); in INTERCEPTOR()
|
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
H A D | sanitizer_common_interceptors.inc | 3566 INTERCEPTOR(char *, realpath, const char *path, char *resolved_path) { 3568 COMMON_INTERCEPTOR_ENTER(ctx, realpath, path, resolved_path); 3576 if (!resolved_path) 3577 allocated_path = resolved_path = (char *)WRAP(malloc)(path_max + 1); 3579 char *res = REAL(realpath)(path, resolved_path);
|
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
H A D | sanitizer_common_interceptors.inc | 3736 INTERCEPTOR(char *, realpath, const char *path, char *resolved_path) { 3738 COMMON_INTERCEPTOR_ENTER(ctx, realpath, path, resolved_path); 3746 if (!resolved_path) 3747 allocated_path = resolved_path = (char *)WRAP(malloc)(path_max + 1); 3749 char *res = REAL(realpath)(path, resolved_path);
|
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
H A D | sanitizer_common_interceptors.inc | 3645 INTERCEPTOR(char *, realpath, const char *path, char *resolved_path) { 3647 COMMON_INTERCEPTOR_ENTER(ctx, realpath, path, resolved_path); 3655 if (!resolved_path) 3656 allocated_path = resolved_path = (char *)WRAP(malloc)(path_max + 1); 3658 char *res = REAL(realpath)(path, resolved_path);
|