Home
last modified time | relevance | path

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

/freebsd/sys/contrib/dev/acpica/components/namespace/
H A Dnsnames.c624 char *InputPath = OriginalPath; in AcpiNsNormalizePathname() local
632 NewPathBuffer = ACPI_ALLOCATE_ZEROED (strlen (InputPath) + 1); in AcpiNsNormalizePathname()
641 if (*InputPath == '\\') in AcpiNsNormalizePathname()
643 *NewPath = *InputPath; in AcpiNsNormalizePathname()
645 InputPath++; in AcpiNsNormalizePathname()
648 while (*InputPath == '^') in AcpiNsNormalizePathname()
650 *NewPath = *InputPath; in AcpiNsNormalizePathname()
652 InputPath++; in AcpiNsNormalizePathname()
657 while (*InputPath) in AcpiNsNormalizePathname()
661 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.cpp562 SmallString<256> InputPath; in demangleSymbols() local
564 sys::fs::createTemporaryFile("demangle-in", "list", InputFD, InputPath); in demangleSymbols()
566 error(InputPath, EC.message()); in demangleSymbols()
569 ToolOutputFile InputTOF{InputPath, InputFD}; in demangleSymbols()
595 InputPath.str(), OutputPath.str(), {""}}; in demangleSymbols()
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningWorker.cpp820 auto InputPath = TUBuffer->getBufferIdentifier(); in computeDependencies() local
822 InputPath, 0, in computeDependencies()
830 ModifiedCommandLine->emplace_back(InputPath); in computeDependencies()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTargetProperties.td128 def InputPath: Property<"input-path", "FileSpec">,