Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Dsymbolication.py232 self.resolved_path = None
248 obj.resolved_path = module.platform_file.fullpath
266 print('resolved_path = "%s"' % (self.resolved_path))
286 resolved_path = self.get_resolved_path()
287 if resolved_path:
288 s += "%s " % (resolved_path)
306 if self.resolved_path:
307 return self.resolved_path
379 resolved_path = self.get_resolved_path()
381 resolved_path, None, uuid_str, self.symfile)
[all …]
H A Dcrashlog.py255 self.resolved_path = self.path
258 if not self.resolved_path:
297 self.resolved_path = self.path
298 if not self.resolved_path and os.path.exists(self.path):
301 if not self.resolved_path and not os.path.exists(self.path):
324 if (self.resolved_path and os.path.exists(self.resolved_path)) or (
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformRemoteDarwinDevice.cpp173 std::string resolved_path = in GetSymbolFile() local
176 local_file.SetFile(resolved_path, FileSpec::Style::native); in GetSymbolFile()
186 resolved_path = (llvm::Twine(os_version_dir) + "/Symbols.Internal/" + in GetSymbolFile()
190 local_file.SetFile(resolved_path, FileSpec::Style::native); in GetSymbolFile()
199 resolved_path = in GetSymbolFile()
203 local_file.SetFile(resolved_path, FileSpec::Style::native); in GetSymbolFile()
H A DPlatformAppleSimulator.cpp457 char resolved_path[PATH_MAX]; in GetSymbolFile() local
460 ::snprintf(resolved_path, sizeof(resolved_path), "%s/%s", in GetSymbolFile()
464 local_file.SetFile(resolved_path, FileSpec::Style::native); in GetSymbolFile()
/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/
H A Ddebugserver.cpp233 char resolved_path[PATH_MAX]; in RNBRunLoopLaunchInferior() local
237 if (!DNBResolveExecutablePath(inferior_argv[0], resolved_path, in RNBRunLoopLaunchInferior()
238 sizeof(resolved_path))) in RNBRunLoopLaunchInferior()
239 ::strlcpy(resolved_path, inferior_argv[0], sizeof(resolved_path)); in RNBRunLoopLaunchInferior()
248 &ctx, resolved_path, &inferior_argv[0], &inferior_envp[0], cwd, in RNBRunLoopLaunchInferior()
H A DDNB.cpp1692 nub_bool_t DNBResolveExecutablePath(const char *path, char *resolved_path, in DNBResolveExecutablePath() argument
1711 url.get(), true, (UInt8 *)resolved_path, resolved_path_size)) in DNBResolveExecutablePath()
1719 ::strlcpy(resolved_path, max_path, resolved_path_size); in DNBResolveExecutablePath()
1720 return strlen(resolved_path) + 1 < resolved_path_size; in DNBResolveExecutablePath()
1743 ::strlcpy(resolved_path, result.c_str(), resolved_path_size); in DNBResolveExecutablePath()
H A DDNB.h240 nub_bool_t DNBResolveExecutablePath(const char *path, char *resolved_path,
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectTarget.cpp2604 std::string resolved_path = file_spec.GetPath(); in DoExecute() local
2605 if (resolved_path != entry.ref()) { in DoExecute()
2608 entry.ref().str().c_str(), resolved_path.c_str()); in DoExecute()
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc3869 INTERCEPTOR(char *, realpath, const char *path, char *resolved_path) {
3871 COMMON_INTERCEPTOR_ENTER(ctx, realpath, path, resolved_path);
3879 if (!resolved_path)
3880 allocated_path = resolved_path = (char *)WRAP(malloc)(path_max + 1);
3882 char *res = REAL(realpath)(path, resolved_path);