Home
last modified time | relevance | path

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

/freebsd/sys/contrib/dev/acpica/components/namespace/
H A Dnsnames.c617 char *InputPath = OriginalPath; in AcpiNsNormalizePathname() local
625 NewPathBuffer = ACPI_ALLOCATE_ZEROED (strlen (InputPath) + 1); in AcpiNsNormalizePathname()
634 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()
654 for (i = 0; (i < ACPI_NAMESEG_SIZE) && *InputPath; i++) in AcpiNsNormalizePathname()
[all …]
/freebsd/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()
1616 char *InputPath; in AcpiDmCheckForExternalConflict() local
1626 InputPath = Path; in AcpiDmCheckForExternalConflict()
1627 if ((*InputPath == AML_ROOT_PREFIX) && InputPath[1]) in AcpiDmCheckForExternalConflict()
1629 InputPath++; in AcpiDmCheckForExternalConflict()
1645 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/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/sys/contrib/dev/acpica/include/
H A Dacapps.h323 char *InputPath,
/freebsd/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/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCodeCoverage.cpp560 SmallString<256> InputPath; in demangleSymbols() local
562 sys::fs::createTemporaryFile("demangle-in", "list", InputFD, InputPath); in demangleSymbols()
564 error(InputPath, EC.message()); in demangleSymbols()
567 ToolOutputFile InputTOF{InputPath, InputFD}; in demangleSymbols()
594 InputPath.str(), OutputPath.str(), {""}}; in demangleSymbols()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTargetProperties.td122 def InputPath: Property<"input-path", "FileSpec">,