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

/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/
H A DFileSystemPosix.cpp57 char resolved_path[PATH_MAX]; local
58 if (!src.GetPath(resolved_path, sizeof(resolved_path))) {
63 if (realpath(resolved_path, real_path) == nullptr) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/
H A DDarwinProcessLauncher.cpp72 static bool ResolveExecutablePath(const char *path, char *resolved_path, argument
91 url.get(), true, (UInt8 *)resolved_path, resolved_path_size))
99 ::strncpy(resolved_path, max_path, resolved_path_size);
100 return strlen(resolved_path) + 1 < resolved_path_size;
123 ::strncpy(resolved_path, result.c_str(), resolved_path_size);
475 char resolved_path[PATH_MAX]; local
476 resolved_path[0] = '\0';
483 if (!ResolveExecutablePath(given_path, resolved_path,
484 sizeof(resolved_path))) {
489 ::strncpy(resolved_path, given_pat
[all...]
/freebsd-11-stable/sbin/mount/
H A Dmntopts.h98 int checkpath(const char *, char resolved_path[]);
/freebsd-11-stable/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-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/dd/
H A Ddd_interceptors.cpp225 INTERCEPTOR(char*, realpath, const char *path, char *resolved_path) { argument
227 return REAL(realpath)(path, resolved_path);
/freebsd-11-stable/contrib/libucl/src/
H A Ducl_util.c136 static char* ucl_realpath(const char *path, char *resolved_path) { argument
145 return _fullpath(resolved_path, tmp, MAX_PATH);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp2584 std::string resolved_path = file_spec.GetPath(); variable
2586 if (resolved_path != entry.ref()) {
2589 entry.ref().str().c_str(), resolved_path.c_str());
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc3602 INTERCEPTOR(char *, realpath, const char *path, char *resolved_path) {
3604 COMMON_INTERCEPTOR_ENTER(ctx, realpath, path, resolved_path);
3612 if (!resolved_path)
3613 allocated_path = resolved_path = (char *)WRAP(malloc)(path_max + 1);
3615 char *res = REAL(realpath)(path, resolved_path);

Completed in 132 milliseconds