Home
last modified time | relevance | path

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

12

/external/llvm-project/lldb/source/Host/posix/
DFileSystemPosix.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()
/external/llvm-project/lldb/examples/python/
Dsymbolication.py233 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()
382 resolved_path, str(self.arch), uuid_str, self.symfile)
[all …]
Dcrashlog.py246 self.resolved_path = self.path
249 if not self.resolved_path:
286 self.resolved_path = self.path
287 if not self.resolved_path and os.path.exists(self.path):
290 if not self.resolved_path and not os.path.exists(self.path):
306 if (self.resolved_path and os.path.exists(self.resolved_path)) or (
841 for resolved_path in glob.glob(arg):
842 crash_log_files.append(resolved_path)
/external/pdfium/testing/fuzzers/
Dpdf_fuzzer_init_public.cc42 std::unique_ptr<char, pdfium::FreeDeleter> resolved_path( in ProgramPath() local
44 if (resolved_path.get()) in ProgramPath()
45 result = std::string(resolved_path.get()); in ProgramPath()
/external/selinux/libselinux/src/
Dmatchpathcon.c377 int realpath_not_final(const char *name, char *resolved_path) in realpath_not_final() argument
396 p = strcpy(resolved_path, ""); in realpath_not_final()
400 p = realpath(tmp_path, resolved_path); in realpath_not_final()
403 p = realpath("./", resolved_path); in realpath_not_final()
422 resolved_path += len; in realpath_not_final()
423 strcpy(resolved_path, "/"); in realpath_not_final()
424 resolved_path += 1; in realpath_not_final()
425 strcpy(resolved_path, last_component); in realpath_not_final()
/external/tensorflow/tensorflow/stream_executor/rocm/
Drocm_diagnostics.cc167 char resolved_path[PATH_MAX] = {0}; in FindDsoVersion() local
168 if (realpath(info->dlpi_name, resolved_path) == nullptr) { in FindDsoVersion()
171 VLOG(1) << "found DLL info with resolved path: " << resolved_path; in FindDsoVersion()
172 const char* slash = rindex(resolved_path, '/'); in FindDsoVersion()
/external/selinux/sandbox/
Dseunshare.c753 char *resolved_path = NULL; in main() local
770 resolved_path = realpath(pwd->pw_dir,NULL); in main()
771 if (! resolved_path) goto childerr; in main()
773 if (verify_directory(resolved_path, NULL, &st_curhomedir) < 0) in main()
775 if (check_owner_uid(uid, resolved_path, &st_curhomedir) < 0) in main()
779 if (homedir_s && seunshare_mount(homedir_s, resolved_path, in main()
851 free(resolved_path); in main()
/external/tensorflow/tensorflow/stream_executor/cuda/
Dcuda_diagnostics.cc253 char resolved_path[PATH_MAX] = {0}; in FindDsoVersion() local
254 if (realpath(info->dlpi_name, resolved_path) == nullptr) { in FindDsoVersion()
257 VLOG(1) << "found DLL info with resolved path: " << resolved_path; in FindDsoVersion()
258 const char *slash = rindex(resolved_path, '/'); in FindDsoVersion()
/external/llvm-project/lldb/source/Plugins/Platform/MacOSX/
DPlatformRemoteDarwinDevice.cpp449 std::string resolved_path = in GetSymbolFile() local
452 local_file.SetFile(resolved_path, FileSpec::Style::native); in GetSymbolFile()
462 resolved_path = (llvm::Twine(os_version_dir) + "/Symbols.Internal/" + in GetSymbolFile()
466 local_file.SetFile(resolved_path, FileSpec::Style::native); in GetSymbolFile()
475 resolved_path = in GetSymbolFile()
479 local_file.SetFile(resolved_path, FileSpec::Style::native); in GetSymbolFile()
DPlatformAppleSimulator.cpp434 char resolved_path[PATH_MAX]; in GetSymbolFile() local
437 ::snprintf(resolved_path, sizeof(resolved_path), "%s/%s", in GetSymbolFile()
441 local_file.SetFile(resolved_path, FileSpec::Style::native); in GetSymbolFile()
/external/mesa3d/src/drm-shim/
Ddrm_shim.c505 realpath(const char *path, char *resolved_path) in realpath() argument
510 return real_realpath(path, resolved_path); in realpath()
512 strcpy(resolved_path, path); in realpath()
514 return resolved_path; in realpath()
/external/python/cpython3/Lib/urllib/
Dparse.py561 resolved_path = []
566 resolved_path.pop()
574 resolved_path.append(seg)
579 resolved_path.append('')
582 resolved_path) or '/', params, query, fragment)))
/external/llvm-project/lldb/tools/debugserver/source/
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()
DDNB.cpp1680 nub_bool_t DNBResolveExecutablePath(const char *path, char *resolved_path, in DNBResolveExecutablePath() argument
1699 url.get(), true, (UInt8 *)resolved_path, resolved_path_size)) in DNBResolveExecutablePath()
1707 ::strlcpy(resolved_path, max_path, resolved_path_size); in DNBResolveExecutablePath()
1708 return strlen(resolved_path) + 1 < resolved_path_size; in DNBResolveExecutablePath()
1731 ::strlcpy(resolved_path, result.c_str(), resolved_path_size); in DNBResolveExecutablePath()
DDNB.h237 nub_bool_t DNBResolveExecutablePath(const char *path, char *resolved_path,
/external/angle/tools/android/modularization/convenience/
Dlookup_dep.py283 resolved_path = path.resolve()
285 return str(resolved_path).startswith(str(resolved_other))
/external/llvm-project/compiler-rt/lib/tsan/dd/
Ddd_interceptors.cpp225 INTERCEPTOR(char*, realpath, const char *path, char *resolved_path) { in INTERCEPTOR() argument
227 return REAL(realpath)(path, resolved_path); in INTERCEPTOR()
/external/compiler-rt/lib/tsan/dd/
Ddd_interceptors.cc226 INTERCEPTOR(char*, realpath, const char *path, char *resolved_path) { in INTERCEPTOR() argument
228 return REAL(realpath)(path, resolved_path); in INTERCEPTOR()
/external/python/cpython3/Include/cpython/
Dfileutils.h133 wchar_t *resolved_path,
/external/ImageMagick/MagickCore/
Dmodule.c587 resolved_path[PATH_MAX+1]; in GetMagickModulePath() local
589 if (realpath(path,resolved_path) != (char *) NULL) in GetMagickModulePath()
590 (void) CopyMagickString(path,resolved_path,MagickPathExtent); in GetMagickModulePath()
/external/selinux/libselinux/include/selinux/
Dselinux.h472 extern int realpath_not_final(const char *name, char *resolved_path);
/external/python/cpython3/Python/
Dfileutils.c1733 wchar_t *resolved_path, size_t resolved_path_len) in _Py_wrealpath() argument
1761 wcsncpy(resolved_path, wresolved_path, resolved_path_len); in _Py_wrealpath()
1763 return resolved_path; in _Py_wrealpath()
/external/llvm-project/lldb/source/Commands/
DCommandObjectTarget.cpp2605 std::string resolved_path = file_spec.GetPath(); in DoExecute() local
2607 if (resolved_path != entry.ref()) { in DoExecute()
2610 entry.ref().str().c_str(), resolved_path.c_str()); in DoExecute()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_interceptors.inc3036 INTERCEPTOR(char *, realpath, const char *path, char *resolved_path) {
3038 COMMON_INTERCEPTOR_ENTER(ctx, realpath, path, resolved_path);
3046 if (!resolved_path)
3047 allocated_path = resolved_path = (char *)WRAP(malloc)(path_max + 1);
3049 char *res = REAL(realpath)(path, resolved_path);
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_interceptors.inc3647 INTERCEPTOR(char *, realpath, const char *path, char *resolved_path) {
3649 COMMON_INTERCEPTOR_ENTER(ctx, realpath, path, resolved_path);
3657 if (!resolved_path)
3658 allocated_path = resolved_path = (char *)WRAP(malloc)(path_max + 1);
3660 char *res = REAL(realpath)(path, resolved_path);

12