Home
last modified time | relevance | path

Searched refs:ParentPath (Results 1 – 9 of 9) sorted by relevance

/freebsd-13.1/sys/contrib/dev/acpica/compiler/
H A Daslxrefout.c343 char *ParentPath; in OtXrefWalkPart1() local
375 ACPI_FREE (ParentPath); in OtXrefWalkPart1()
441 Length, ParentPath); in OtXrefWalkPart1()
442 ACPI_FREE (ParentPath); in OtXrefWalkPart1()
457 ParentPath); in OtXrefWalkPart1()
458 ACPI_FREE (ParentPath); in OtXrefWalkPart1()
492 ACPI_FREE (ParentPath); in OtXrefWalkPart1()
592 char *ParentPath; in OtXrefWalkPart2() local
639 ACPI_FREE (ParentPath); in OtXrefWalkPart2()
740 char *ParentPath; in OtXrefWalkPart3() local
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerDeclContext.h38 StringRef ParentPath = sys::path::parent_path(Path); in resolve() local
42 if (!ResolvedPaths.count(ParentPath)) { in resolve()
44 sys::fs::real_path(ParentPath, RealPath); in resolve()
46 {ParentPath, std::string(RealPath.c_str(), RealPath.size())}); in resolve()
50 SmallString<256> ResolvedPath(ResolvedPaths[ParentPath]); in resolve()
/freebsd-13.1/sys/contrib/dev/acpica/common/
H A Ddmextern.c309 char *ParentPath; in AcpiDmNormalizeParentPrefix() local
356 ParentPath = AcpiNsGetExternalPathname (Node); in AcpiDmNormalizeParentPrefix()
357 if (!ParentPath) in AcpiDmNormalizeParentPrefix()
362 Length = (strlen (ParentPath) + strlen (Path) + 1); in AcpiDmNormalizeParentPrefix()
363 if (ParentPath[1]) in AcpiDmNormalizeParentPrefix()
373 if (*ParentPath == AML_ROOT_PREFIX) in AcpiDmNormalizeParentPrefix()
391 strcpy (Fullpath, &ParentPath[Index]); in AcpiDmNormalizeParentPrefix()
397 if (ParentPath[1]) in AcpiDmNormalizeParentPrefix()
407 ACPI_FREE (ParentPath); in AcpiDmNormalizeParentPrefix()
/freebsd-13.1/sys/contrib/dev/acpica/components/debugger/
H A Ddbcmds.c1018 char *ParentPath; in AcpiDbDeviceResources() local
1024 ParentPath = AcpiNsGetNormalizedPathname (Node, TRUE); in AcpiDbDeviceResources()
1025 if (!ParentPath) in AcpiDbDeviceResources()
1046 AcpiOsPrintf ("\nDevice: %s\n", ParentPath); in AcpiDbDeviceResources()
1234 ACPI_FREE (ParentPath); in AcpiDbDeviceResources()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageView.cpp43 SmallString<256> ParentPath = sys::path::parent_path(Path); in getOutputPath() local
44 sys::path::remove_dots(ParentPath, /*remove_dot_dots=*/true); in getOutputPath()
45 sys::path::append(FullPath, sys::path::relative_path(ParentPath)); in getOutputPath()
/freebsd-13.1/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DAMDGPU.cpp250 auto ParentPath = llvm::sys::path::parent_path(RealClangPath); in getInstallationPathCandidates() local
251 if (ParentPath != InstallDir) in getInstallationPathCandidates()
252 ROCmSearchDirs.emplace_back(DeduceROCmPath(ParentPath)); in getInstallationPathCandidates()
256 auto RealClangRoot = llvm::sys::path::parent_path(ParentPath); in getInstallationPathCandidates()
H A DMSVC.cpp192 llvm::StringRef ParentPath = llvm::sys::path::parent_path(TestPath); in findVCToolChainViaEnvironment() local
193 llvm::StringRef ParentFilename = llvm::sys::path::filename(ParentPath); in findVCToolChainViaEnvironment()
195 Path = std::string(ParentPath); in findVCToolChainViaEnvironment()
203 Path = std::string(ParentPath); in findVCToolChainViaEnvironment()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp512 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str()); in getThinLTOOutputFile() local
513 if (!ParentPath.empty()) { in getThinLTOOutputFile()
515 if (std::error_code EC = llvm::sys::fs::create_directories(ParentPath)) in getThinLTOOutputFile()
516 error(EC, "error creating the directory '" + ParentPath + "'"); in getThinLTOOutputFile()
/freebsd-13.1/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp1315 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str()); in getThinLTOOutputFile() local
1316 if (!ParentPath.empty()) { in getThinLTOOutputFile()
1318 if (std::error_code EC = llvm::sys::fs::create_directories(ParentPath)) in getThinLTOOutputFile()
1319 llvm::errs() << "warning: could not create directory '" << ParentPath in getThinLTOOutputFile()