Home
last modified time | relevance | path

Searched refs:resolved_path (Results 1 – 7 of 7) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Host/posix/
H A DFileSystemPosix.cpp57 char resolved_path[PATH_MAX]; in ResolveSymbolicLink() local
58 if (!src.GetPath(resolved_path, sizeof(resolved_path))) { in ResolveSymbolicLink()
64 if (realpath(resolved_path, real_path) == nullptr) { in ResolveSymbolicLink()
/freebsd-14.2/sbin/mount/
H A Dmntopts.h104 int checkpath(const char *, char resolved_path[]);
105 int checkpath_allow_file(const char *, char resolved_path[]);
/freebsd-14.2/usr.sbin/cron/crontab/
H A Dcrontab.c120 char resolved_path[PATH_MAX]; in parse_args() local
203 } else if (realpath(Filename, resolved_path) != NULL && in parse_args()
204 !strcmp(resolved_path, SYSCRONTAB)) { in parse_args()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/tsan/dd/
H A Ddd_interceptors.cpp226 INTERCEPTOR(char*, realpath, const char *path, char *resolved_path) { in INTERCEPTOR() argument
228 return REAL(realpath)(path, resolved_path); in INTERCEPTOR()
/freebsd-14.2/contrib/libucl/src/
H A Ducl_util.c144 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-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp2895 std::string resolved_path = file_spec.GetPath(); in DoExecute() local
2896 if (resolved_path != entry.ref()) { in DoExecute()
2899 entry.ref().str().c_str(), resolved_path.c_str()); in DoExecute()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc3816 INTERCEPTOR(char *, realpath, const char *path, char *resolved_path) {
3818 COMMON_INTERCEPTOR_ENTER(ctx, realpath, path, resolved_path);
3826 if (!resolved_path)
3827 allocated_path = resolved_path = (char *)WRAP(malloc)(path_max + 1);
3829 char *res = REAL(realpath)(path, resolved_path);