Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/
H A DDarwinProcessLauncher.cpp73 static bool ResolveExecutablePath(const char *path, char *resolved_path, in ResolveExecutablePath() argument
100 ::strncpy(resolved_path, max_path, resolved_path_size); in ResolveExecutablePath()
101 return strlen(resolved_path) + 1 < resolved_path_size; in ResolveExecutablePath()
124 ::strncpy(resolved_path, result.c_str(), resolved_path_size); in ResolveExecutablePath()
484 char resolved_path[PATH_MAX]; in LaunchInferior() local
485 resolved_path[0] = '\0'; in LaunchInferior()
493 if (!ResolveExecutablePath(given_path, resolved_path, in LaunchInferior()
494 sizeof(resolved_path))) { in LaunchInferior()
499 ::strncpy(resolved_path, given_path, sizeof(resolved_path)); in LaunchInferior()
503 resolved_path); in LaunchInferior()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/posix/
H A DFileSystem.cpp57 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-12.1/usr.sbin/cron/crontab/
H A Dcrontab.c136 char resolved_path[PATH_MAX]; local
219 } else if (realpath(Filename, resolved_path) != NULL &&
220 !strcmp(resolved_path, SYSCRONTAB)) {
/freebsd-12.1/sbin/mount/
H A Dmntopts.h102 int checkpath(const char *, char resolved_path[]);
/freebsd-12.1/contrib/compiler-rt/lib/tsan/dd/
H A Ddd_interceptors.cc226 INTERCEPTOR(char*, realpath, const char *path, char *resolved_path) { in INTERCEPTOR() argument
228 return REAL(realpath)(path, resolved_path); in INTERCEPTOR()
/freebsd-12.1/contrib/libucl/src/
H A Ducl_util.c136 static char* ucl_realpath(const char *path, char *resolved_path) { in ucl_realpath() argument
145 return _fullpath(resolved_path, tmp, MAX_PATH); in ucl_realpath()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectTarget.cpp2639 std::string resolved_path = file_spec.GetPath(); in DoExecute() local
2641 if (resolved_path != entry.ref) { in DoExecute()
2644 entry.ref.str().c_str(), resolved_path.c_str()); in DoExecute()
/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc3567 INTERCEPTOR(char *, realpath, const char *path, char *resolved_path) {
3569 COMMON_INTERCEPTOR_ENTER(ctx, realpath, path, resolved_path);
3577 if (!resolved_path)
3578 allocated_path = resolved_path = (char *)WRAP(malloc)(path_max + 1);
3580 char *res = REAL(realpath)(path, resolved_path);