Searched refs:resolved_path (Results 1 – 8 of 8) sorted by relevance
/freebsd/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() 64 if (realpath(resolved_path, real_path) == nullptr) { in ResolveSymbolicLink()
|
/freebsd/sys/contrib/openzfs/lib/libzutil/ |
H A D | zutil_device_path.c | 61 char resolved_path[PATH_MAX]; in zfs_resolve_shortname() local 96 realpath(name, resolved_path) != NULL) { in zfs_resolve_shortname() 97 if (access(resolved_path, F_OK) == 0) { in zfs_resolve_shortname() 98 if (strlen(resolved_path) + 1 <= len) { in zfs_resolve_shortname() 99 if (strlcpy(path, resolved_path, len) < len) in zfs_resolve_shortname()
|
/freebsd/sbin/mount/ |
H A D | mntopts.h | 102 int checkpath(const char *, char resolved_path[]); 103 int checkpath_allow_file(const char *, char resolved_path[]);
|
/freebsd/usr.sbin/cron/crontab/ |
H A D | crontab.c | 120 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/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/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/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectTarget.cpp | 2819 std::string resolved_path = file_spec.GetPath(); in DoExecute() local 2820 if (resolved_path != entry.ref()) { in DoExecute() 2823 entry.ref().str().c_str(), resolved_path.c_str()); in DoExecute()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_common_interceptors.inc | 3827 INTERCEPTOR(char *, realpath, const char *path, char *resolved_path) { 3829 COMMON_INTERCEPTOR_ENTER(ctx, realpath, path, resolved_path); 3837 if (!resolved_path) 3838 allocated_path = resolved_path = (char *)WRAP(malloc)(path_max + 1); 3840 char *res = REAL(realpath)(path, resolved_path);
|