Home
last modified time | relevance | path

Searched refs:InputPath (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/sys/contrib/dev/acpica/components/namespace/
H A Dnsnames.c634 if (*InputPath == '\\') in AcpiNsNormalizePathname()
636 *NewPath = *InputPath; in AcpiNsNormalizePathname()
638 InputPath++; in AcpiNsNormalizePathname()
641 while (*InputPath == '^') in AcpiNsNormalizePathname()
643 *NewPath = *InputPath; in AcpiNsNormalizePathname()
645 InputPath++; in AcpiNsNormalizePathname()
650 while (*InputPath) in AcpiNsNormalizePathname()
662 InputPath++; in AcpiNsNormalizePathname()
667 if (*InputPath == '.') in AcpiNsNormalizePathname()
669 *NewPath = *InputPath; in AcpiNsNormalizePathname()
[all …]
/freebsd-14.2/sys/contrib/dev/acpica/common/
H A Ddmextern.c790 char *InputPath = *Path; in AcpiDmRemoveRootPrefix() local
793 if ((*InputPath == AML_ROOT_PREFIX) && (InputPath[1])) in AcpiDmRemoveRootPrefix()
795 if (!memmove(InputPath, InputPath+1, strlen(InputPath))) in AcpiDmRemoveRootPrefix()
800 *Path = InputPath; in AcpiDmRemoveRootPrefix()
1624 char *InputPath; in AcpiDmCheckForExternalConflict() local
1634 InputPath = Path; in AcpiDmCheckForExternalConflict()
1635 if ((*InputPath == AML_ROOT_PREFIX) && InputPath[1]) in AcpiDmCheckForExternalConflict()
1637 InputPath++; in AcpiDmCheckForExternalConflict()
1653 if (!strcmp (ListItemPath, InputPath) && in AcpiDmCheckForExternalConflict()
H A Dadfile.c387 char *InputPath, in FlSplitInputPathname() argument
401 if (!InputPath) in FlSplitInputPathname()
408 DirectoryPath = FlStrdup (InputPath); in FlSplitInputPathname()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-debuginfo-analyzer/
H A Dllvm-debuginfo-analyzer.cpp54 static std::vector<std::string> expandBundle(const std::string &InputPath) { in expandBundle() argument
56 SmallString<256> BundlePath(InputPath); in expandBundle()
81 BundlePaths.push_back(InputPath); in expandBundle()
/freebsd-14.2/sys/contrib/dev/acpica/include/
H A Dacapps.h323 char *InputPath,
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerFork.cpp262 void CollectDFT(const std::string &InputPath) { in CollectDFT()
264 if (!FilesWithDFT.insert(InputPath).second) return; in CollectDFT()
269 Cmd.addArgument(InputPath); in CollectDFT()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCodeCoverage.cpp588 SmallString<256> InputPath; in demangleSymbols() local
590 sys::fs::createTemporaryFile("demangle-in", "list", InputFD, InputPath); in demangleSymbols()
592 error(InputPath, EC.message()); in demangleSymbols()
595 ToolOutputFile InputTOF{InputPath, InputFD}; in demangleSymbols()
622 InputPath.str(), OutputPath.str(), {""}}; in demangleSymbols()
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DTargetProperties.td122 def InputPath: Property<"input-path", "FileSpec">,