Home
last modified time | relevance | path

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

/netbsd-src/sys/external/bsd/acpica/dist/compiler/
H A Daslxrefout.c235 char *ParentPath; in OtXrefWalkPart1() local
263 ParentPath = AcpiNsGetNormalizedPathname (Node, TRUE); in OtXrefWalkPart1()
266 ParentPath, AcpiUtGetTypeName (Node->Type)); in OtXrefWalkPart1()
267 ACPI_FREE (ParentPath); in OtXrefWalkPart1()
329 ParentPath = AcpiNsGetNormalizedPathname ( in OtXrefWalkPart1()
333 Length, ParentPath); in OtXrefWalkPart1()
334 ACPI_FREE (ParentPath); in OtXrefWalkPart1()
344 ParentPath = AcpiNsGetNormalizedPathname ( in OtXrefWalkPart1()
349 ParentPath); in OtXrefWalkPart1()
350 ACPI_FREE (ParentPath); in OtXrefWalkPart1()
[all …]
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/sys/external/bsd/acpica/dist/common/
H A Ddmextern.c201 char *ParentPath; in AcpiDmNormalizeParentPrefix() local
248 ParentPath = AcpiNsGetExternalPathname (Node); in AcpiDmNormalizeParentPrefix()
249 if (!ParentPath) in AcpiDmNormalizeParentPrefix()
254 Length = (strlen (ParentPath) + strlen (Path) + 1); in AcpiDmNormalizeParentPrefix()
255 if (ParentPath[1]) in AcpiDmNormalizeParentPrefix()
265 if (*ParentPath == AML_ROOT_PREFIX) in AcpiDmNormalizeParentPrefix()
283 strcpy (Fullpath, &ParentPath[Index]); in AcpiDmNormalizeParentPrefix()
289 if (ParentPath[1]) in AcpiDmNormalizeParentPrefix()
299 ACPI_FREE (ParentPath); in AcpiDmNormalizeParentPrefix()
/netbsd-src/sys/external/bsd/acpica/dist/debugger/
H A Ddbcmds.c912 char *ParentPath; in AcpiDbDeviceResources() local
918 ParentPath = AcpiNsGetNormalizedPathname (Node, TRUE); in AcpiDbDeviceResources()
919 if (!ParentPath) in AcpiDbDeviceResources()
940 AcpiOsPrintf ("\nDevice: %s\n", ParentPath); in AcpiDbDeviceResources()
1128 ACPI_FREE (ParentPath); in AcpiDbDeviceResources()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp479 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str()); in getThinLTOOutputFile() local
480 if (!ParentPath.empty()) { in getThinLTOOutputFile()
482 if (std::error_code EC = llvm::sys::fs::create_directories(ParentPath)) in getThinLTOOutputFile()
483 error(EC, "error creating the directory '" + ParentPath + "'"); in getThinLTOOutputFile()
/netbsd-src/external/apache2/llvm/dist/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()
H A DMSVC.cpp191 llvm::StringRef ParentPath = llvm::sys::path::parent_path(TestPath); in findVCToolChainViaEnvironment() local
192 llvm::StringRef ParentFilename = llvm::sys::path::filename(ParentPath); in findVCToolChainViaEnvironment()
194 Path = std::string(ParentPath); in findVCToolChainViaEnvironment()
202 Path = std::string(ParentPath); in findVCToolChainViaEnvironment()
/netbsd-src/external/apache2/llvm/dist/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()