/llvm-project/lldb/source/Host/posix/ |
H A D | FileSystemPosix.cpp | 49 char resolved_path[PATH_MAX]; in Readlink() 50 if (!src.GetPath(resolved_path, sizeof(resolved_path))) { in Readlink() 56 if (realpath(resolved_path, real_path) == nullptr) { in ResolveSymbolicLink() 57 char resolved_path[PATH_MAX]; ResolveSymbolicLink() local
|
/llvm-project/lldb/examples/python/ |
H A D | symbolication.py | 257 self.resolved_path = None 275 obj.resolved_path = module.platform_file.fullpath 292 print('resolved_path = "%s"' % (self.resolved_path)) 312 resolved_path = self.get_resolved_path() 313 if resolved_path: 314 s += "%s " % (resolved_path) 332 if self.resolved_path: 333 return self.resolved_path 411 resolved_path = self.get_resolved_path() 413 resolved_path, None, uuid_str, self.symfile [all …]
|
H A D | crashlog.py | 334 self.resolved_path = self.path 337 if not self.resolved_path: 392 self.resolved_path = self.path 399 if not self.resolved_path and os.path.exists(self.path): 402 if not self.resolved_path and not os.path.exists(self.path): 443 if (self.resolved_path and os.path.exists(self.resolved_path)) or (
|
/llvm-project/lldb/source/Plugins/Platform/MacOSX/ |
H A D | PlatformRemoteDarwinDevice.cpp | 108 std::string resolved_path = in GetSymbolFile() local 111 local_file.SetFile(resolved_path, FileSpec::Style::native); in GetSymbolFile() 121 resolved_path = (llvm::Twine(os_version_dir) + "/Symbols.Internal/" + in GetSymbolFile() 125 local_file.SetFile(resolved_path, FileSpec::Style::native); in GetSymbolFile() 134 resolved_path = in GetSymbolFile() 138 local_file.SetFile(resolved_path, FileSpec::Style::native); in GetSymbolFile()
|
H A D | PlatformAppleSimulator.cpp | 393 char resolved_path[PATH_MAX]; in GetSymbolFile() 397 ::snprintf(resolved_path, sizeof(resolved_path), "%s/%s", in GetSymbolFile() 401 local_file.SetFile(resolved_path, FileSpec::Style::native); in GetSymbolFile() 392 char resolved_path[PATH_MAX]; GetSymbolFile() local
|
/llvm-project/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 | 1750 nub_bool_t DNBResolveExecutablePath(const char *path, char *resolved_path, in DNBResolveExecutablePath() 1769 url.get(), true, (UInt8 *)resolved_path, resolved_path_size)) in DNBResolveExecutablePath() 1777 ::strlcpy(resolved_path, max_path, resolved_path_size); in DNBResolveExecutablePath() 1778 return strlen(resolved_path) + 1 < resolved_path_size; in DNBResolveExecutablePath() 1801 ::strlcpy(resolved_path, result.c_str(), resolved_path_size); 1742 DNBResolveExecutablePath(const char * path,char * resolved_path,size_t resolved_path_size) DNBResolveExecutablePath() argument
|
H A D | DNB.h | 241 nub_bool_t DNBResolveExecutablePath(const char *path, char *resolved_path,
|
/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()
|
/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectTarget.cpp | 2818 std::string resolved_path = file_spec.GetPath(); in DoExecute() 2819 if (resolved_path != entry.ref()) { in DoExecute() local 2822 entry.ref().str().c_str(), resolved_path.c_str()); in DoExecute()
|
/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_common_interceptors.inc | 3955 INTERCEPTOR(char *, realpath, const char *path, char *resolved_path) { 3957 COMMON_INTERCEPTOR_ENTER(ctx, realpath, path, resolved_path); 3965 if (!resolved_path) 3966 allocated_path = resolved_path = (char *)WRAP(malloc)(path_max + 1); 3968 char *res = REAL(realpath)(path, resolved_path);
|