| /llvm-project-15.0.7/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() 63 if (realpath(resolved_path, real_path) == nullptr) { in ResolveSymbolicLink()
|
| /llvm-project-15.0.7/lldb/examples/python/ |
| H A D | symbolication.py | 233 self.resolved_path = None 249 obj.resolved_path = module.platform_file.fullpath 267 print('resolved_path = "%s"' % (self.resolved_path)) 287 resolved_path = self.get_resolved_path() 288 if resolved_path: 289 s += "%s " % (resolved_path) 307 if self.resolved_path: 308 return self.resolved_path 380 resolved_path = self.get_resolved_path() 419 resolved_path = self.get_resolved_path() [all …]
|
| H A D | crashlog.py | 254 self.resolved_path = self.path 257 if not self.resolved_path: 296 self.resolved_path = self.path 297 if not self.resolved_path and os.path.exists(self.path): 300 if not self.resolved_path and not os.path.exists(self.path): 323 if (self.resolved_path and os.path.exists(self.resolved_path)) or (
|
| /llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/ |
| H A D | PlatformRemoteDarwinDevice.cpp | 172 std::string resolved_path = in GetSymbolFile() local 175 local_file.SetFile(resolved_path, FileSpec::Style::native); in GetSymbolFile() 185 resolved_path = (llvm::Twine(os_version_dir) + "/Symbols.Internal/" + in GetSymbolFile() 189 local_file.SetFile(resolved_path, FileSpec::Style::native); in GetSymbolFile() 198 resolved_path = in GetSymbolFile() 202 local_file.SetFile(resolved_path, FileSpec::Style::native); in GetSymbolFile()
|
| H A D | PlatformAppleSimulator.cpp | 445 char resolved_path[PATH_MAX]; in GetSymbolFile() local 448 ::snprintf(resolved_path, sizeof(resolved_path), "%s/%s", in GetSymbolFile() 452 local_file.SetFile(resolved_path, FileSpec::Style::native); in GetSymbolFile()
|
| /llvm-project-15.0.7/lldb/tools/debugserver/source/ |
| H A D | debugserver.cpp | 233 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 D | DNB.cpp | 1685 nub_bool_t DNBResolveExecutablePath(const char *path, char *resolved_path, in DNBResolveExecutablePath() argument 1704 url.get(), true, (UInt8 *)resolved_path, resolved_path_size)) in DNBResolveExecutablePath() 1712 ::strlcpy(resolved_path, max_path, resolved_path_size); in DNBResolveExecutablePath() 1713 return strlen(resolved_path) + 1 < resolved_path_size; in DNBResolveExecutablePath() 1736 ::strlcpy(resolved_path, result.c_str(), resolved_path_size); in DNBResolveExecutablePath()
|
| H A D | DNB.h | 239 nub_bool_t DNBResolveExecutablePath(const char *path, char *resolved_path,
|
| /llvm-project-15.0.7/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()
|
| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | CommandObjectTarget.cpp | 2589 std::string resolved_path = file_spec.GetPath(); in DoExecute() local 2590 if (resolved_path != entry.ref()) { in DoExecute() 2593 entry.ref().str().c_str(), resolved_path.c_str()); in DoExecute()
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_common_interceptors.inc | 3869 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);
|