Searched refs:resolved_path (Results 1 – 7 of 7) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/lldb/source/Host/posix/ |
| H A D | FileSystemPosix.cpp | 57 char resolved_path[PATH_MAX]; in ResolveSymbolicLink() local 58 if (!src.GetPath(resolved_path, sizeof(resolved_path))) { in ResolveSymbolicLink() 63 if (realpath(resolved_path, real_path) == nullptr) { in ResolveSymbolicLink()
|
| /freebsd-13.1/sbin/mount/ |
| H A D | mntopts.h | 105 int checkpath(const char *, char resolved_path[]);
|
| /freebsd-13.1/usr.sbin/cron/crontab/ |
| H A D | crontab.c | 136 char resolved_path[PATH_MAX]; local 219 } else if (realpath(Filename, resolved_path) != NULL && 220 !strcmp(resolved_path, SYSCRONTAB)) {
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/tsan/dd/ |
| H A D | dd_interceptors.cpp | 226 INTERCEPTOR(char*, realpath, const char *path, char *resolved_path) { in INTERCEPTOR() argument 228 return REAL(realpath)(path, resolved_path); in INTERCEPTOR()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectTarget.cpp | 2545 std::string resolved_path = file_spec.GetPath(); in DoExecute() local 2546 if (resolved_path != entry.ref()) { in DoExecute() 2549 entry.ref().str().c_str(), resolved_path.c_str()); in DoExecute()
|
| /freebsd-13.1/contrib/libucl/src/ |
| H A D | ucl_util.c | 144 static char* ucl_realpath(const char *path, char *resolved_path) in ucl_realpath() argument 154 return _fullpath(resolved_path, tmp, MAX_PATH); in ucl_realpath()
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_common_interceptors.inc | 3663 INTERCEPTOR(char *, realpath, const char *path, char *resolved_path) { 3665 COMMON_INTERCEPTOR_ENTER(ctx, realpath, path, resolved_path); 3673 if (!resolved_path) 3674 allocated_path = resolved_path = (char *)WRAP(malloc)(path_max + 1); 3676 char *res = REAL(realpath)(path, resolved_path);
|