Home
last modified time | relevance | path

Searched refs:FullPath (Results 1 – 14 of 14) sorted by relevance

/freebsd-13.1/sys/contrib/dev/acpica/components/namespace/
H A Dnsnames.c366 char *FullPath, in AcpiNsBuildNormalizedPath() argument
393 if (!FullPath) in AcpiNsBuildNormalizedPath()
435 Left = FullPath; in AcpiNsBuildNormalizedPath()
436 Right = FullPath+Length - 1; in AcpiNsBuildNormalizedPath()
536 char *FullPath = NULL; in AcpiNsBuildPrefixedPathname() local
562 FullPath = ACPI_ALLOCATE_ZEROED ( in AcpiNsBuildPrefixedPathname()
564 if (!FullPath) in AcpiNsBuildPrefixedPathname()
575 strcat (FullPath, PrefixPath); in AcpiNsBuildPrefixedPathname()
578 strcat (FullPath, "."); in AcpiNsBuildPrefixedPathname()
583 strcat (FullPath, ExternalPath); in AcpiNsBuildPrefixedPathname()
[all …]
/freebsd-13.1/sys/contrib/dev/acpica/components/utilities/
H A Duterror.c342 char *FullPath; in AcpiUtPrefixedNamespaceError() local
374 FullPath = AcpiNsBuildPrefixedPathname (PrefixScope, InternalPath); in AcpiUtPrefixedNamespaceError()
377 FullPath ? FullPath : "Could not get pathname", in AcpiUtPrefixedNamespaceError()
380 if (FullPath) in AcpiUtPrefixedNamespaceError()
382 ACPI_FREE (FullPath); in AcpiUtPrefixedNamespaceError()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageView.cpp35 SmallString<256> FullPath; in getOutputPath() local
38 FullPath.append(Opts.ShowOutputDirectory); in getOutputPath()
41 sys::path::append(FullPath, getCoverageDir()); in getOutputPath()
45 sys::path::append(FullPath, sys::path::relative_path(ParentPath)); in getOutputPath()
48 sys::path::append(FullPath, PathFilename); in getOutputPath()
49 sys::path::native(FullPath); in getOutputPath()
51 return std::string(FullPath.str()); in getOutputPath()
60 std::string FullPath = getOutputPath(Path, Extension, InToplevel, false); in createOutputStream() local
62 auto ParentDir = sys::path::parent_path(FullPath); in createOutputStream()
68 new raw_fd_ostream(FullPath, E, sys::fs::FA_Read | sys::fs::FA_Write); in createOutputStream()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dos_version_check.c165 char FullPath[strlen(PListPathPrefix) + strlen(PListPath) + 1]; in _initializeAvailabilityCheck() local
166 strcpy(FullPath, PListPathPrefix); in _initializeAvailabilityCheck()
167 strcat(FullPath, PListPath); in _initializeAvailabilityCheck()
168 PListPath = FullPath; in _initializeAvailabilityCheck()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Remarks/
H A DYAMLRemarkParser.cpp143 SmallString<80> FullPath; in createYAMLParserFromMeta() local
145 FullPath = *ExternalFilePrependPath; in createYAMLParserFromMeta()
146 sys::path::append(FullPath, ExternalFilePath); in createYAMLParserFromMeta()
150 MemoryBuffer::getFile(FullPath); in createYAMLParserFromMeta()
152 return createFileError(FullPath, EC); in createYAMLParserFromMeta()
H A DBitstreamRemarkParser.cpp420 SmallString<80> FullPath(ExternalFilePrependPath); in processExternalFilePath() local
421 sys::path::append(FullPath, *ExternalFilePath); in processExternalFilePath()
427 MemoryBuffer::getFile(FullPath); in processExternalFilePath()
429 return createFileError(FullPath, EC); in processExternalFilePath()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DVTableBuilder.cpp3429 FullPathTy &FullPath, in findPathsToSubobject() argument
3432 Paths.push_back(FullPath); in findPathsToSubobject()
3443 FullPath.insert(BaseSubobject(Base, NewOffset)); in findPathsToSubobject()
3445 IntroducingObject, FullPath, Paths); in findPathsToSubobject()
3446 FullPath.pop_back(); in findPathsToSubobject()
3468 const FullPathTy &FullPath) { in getOffsetOfFullPath() argument
3472 for (const BaseSubobject &BSO : FullPath) { in getOffsetOfFullPath()
3572 FullPathTy FullPath; in computeFullPathsForVFTables() local
3577 BaseSubobject(Info->IntroducingObject, Info->FullOffsetInMDC), FullPath, in computeFullPathsForVFTables()
3579 FullPath.clear(); in computeFullPathsForVFTables()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp1541 SmallString<256> FullPath; in parseEntry() local
1543 FullPath = FS->getExternalContentsPrefixDir(); in parseEntry()
1544 assert(!FullPath.empty() && in parseEntry()
1546 llvm::sys::path::append(FullPath, Value); in parseEntry()
1548 FullPath = Value; in parseEntry()
1553 FullPath = canonicalize(FullPath); in parseEntry()
1554 ExternalContentsPath = FullPath.str(); in parseEntry()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFVerifier.cpp785 std::string FullPath; in verifyDebugLineRows() local
788 DILineInfoSpecifier::FileLineInfoKind::AbsoluteFilePath, FullPath); in verifyDebugLineRows()
791 auto It = FullPathMap.find(FullPath); in verifyDebugLineRows()
793 FullPathMap[FullPath] = FileIndex; in verifyDebugLineRows()
/freebsd-13.1/sys/contrib/dev/acpica/include/
H A Dacnamesp.h486 char *FullPath,
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc110 SmallString<2 * MAX_PATH> FullPath(LongPathPrefix);
112 FullPath.append("UNC\\");
113 FullPath.append(Path8Str.begin() + 2, Path8Str.end());
115 FullPath.append(Path8Str);
117 return UTF8ToUTF16(FullPath, Path16);
/freebsd-13.1/contrib/subversion/subversion/libsvn_subr/
H A Dwin32_crashrpt.c171 char *buf = convert_wbcs_to_ansi(module.FullPath); in write_module_info_callback()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp207 StringRef FullPath = getFullFilepath(F); in maybeRecordFile() local
209 auto Insertion = FileIdMap.insert(std::make_pair(FullPath, NextId)); in maybeRecordFile()
232 bool Success = OS.EmitCVFileDirective(NextId, FullPath, ChecksumAsBytes, in maybeRecordFile()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp7355 SmallString<1024> FullPath(DSYMPath); in DisassembleMachO() local
7356 llvm::sys::path::append(FullPath, "Contents", "Resources", "DWARF", in DisassembleMachO()
7358 DSYMPath = std::string(FullPath.str()); in DisassembleMachO()