Home
last modified time | relevance | path

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

/freebsd-12.1/sys/contrib/dev/acpica/components/namespace/
H A Dnsnames.c372 char *FullPath, in AcpiNsBuildNormalizedPath() argument
399 if (!FullPath) in AcpiNsBuildNormalizedPath()
441 Left = FullPath; in AcpiNsBuildNormalizedPath()
442 Right = FullPath+Length - 1; in AcpiNsBuildNormalizedPath()
542 char *FullPath = NULL; in AcpiNsBuildPrefixedPathname() local
568 FullPath = ACPI_ALLOCATE_ZEROED ( in AcpiNsBuildPrefixedPathname()
570 if (!FullPath) in AcpiNsBuildPrefixedPathname()
581 strcat (FullPath, PrefixPath); in AcpiNsBuildPrefixedPathname()
584 strcat (FullPath, "."); in AcpiNsBuildPrefixedPathname()
589 strcat (FullPath, ExternalPath); in AcpiNsBuildPrefixedPathname()
[all …]
/freebsd-12.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-12.1/contrib/llvm/tools/llvm-cov/
H A DSourceCoverageView.cpp36 SmallString<256> FullPath; in getOutputPath() local
39 FullPath.append(Opts.ShowOutputDirectory); in getOutputPath()
42 sys::path::append(FullPath, getCoverageDir()); in getOutputPath()
46 sys::path::append(FullPath, sys::path::relative_path(ParentPath)); in getOutputPath()
49 sys::path::append(FullPath, PathFilename); in getOutputPath()
50 sys::path::native(FullPath); in getOutputPath()
52 return FullPath.str(); in getOutputPath()
61 std::string FullPath = getOutputPath(Path, Extension, InToplevel, false); in createOutputStream() local
63 auto ParentDir = sys::path::parent_path(FullPath); in createOutputStream()
69 new raw_fd_ostream(FullPath, E, sys::fs::FA_Read | sys::fs::FA_Write); in createOutputStream()
/freebsd-12.1/contrib/compiler-rt/lib/builtins/
H A Dos_version_check.c137 char FullPath[strlen(PListPathPrefix) + strlen(PListPath) + 1]; in parseSystemVersionPList() local
138 strcpy(FullPath, PListPathPrefix); in parseSystemVersionPList()
139 strcat(FullPath, PListPath); in parseSystemVersionPList()
140 PListPath = FullPath; in parseSystemVersionPList()
/freebsd-12.1/contrib/llvm/lib/Support/
H A DVirtualFileSystem.cpp1314 SmallString<256> FullPath; in parseEntry() local
1316 FullPath = FS->getExternalContentsPrefixDir(); in parseEntry()
1317 assert(!FullPath.empty() && in parseEntry()
1319 llvm::sys::path::append(FullPath, Value); in parseEntry()
1321 FullPath = Value; in parseEntry()
1327 FullPath = sys::path::remove_leading_dotslash(FullPath); in parseEntry()
1328 sys::path::remove_dots(FullPath, /*remove_dot_dot=*/true); in parseEntry()
1330 ExternalContentsPath = FullPath.str(); in parseEntry()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DVTableBuilder.cpp3382 FullPathTy &FullPath, in findPathsToSubobject() argument
3385 Paths.push_back(FullPath); in findPathsToSubobject()
3396 FullPath.insert(BaseSubobject(Base, NewOffset)); in findPathsToSubobject()
3398 IntroducingObject, FullPath, Paths); in findPathsToSubobject()
3399 FullPath.pop_back(); in findPathsToSubobject()
3421 const FullPathTy &FullPath) { in getOffsetOfFullPath() argument
3425 for (const BaseSubobject &BSO : FullPath) { in getOffsetOfFullPath()
3525 FullPathTy FullPath; in computeFullPathsForVFTables() local
3530 BaseSubobject(Info->IntroducingObject, Info->FullOffsetInMDC), FullPath, in computeFullPathsForVFTables()
3532 FullPath.clear(); in computeFullPathsForVFTables()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFVerifier.cpp751 std::string FullPath; in verifyDebugLineRows() local
754 DILineInfoSpecifier::FileLineInfoKind::AbsoluteFilePath, FullPath); in verifyDebugLineRows()
757 auto It = FullPathMap.find(FullPath); in verifyDebugLineRows()
759 FullPathMap[FullPath] = FileIndex; in verifyDebugLineRows()
/freebsd-12.1/sys/contrib/dev/acpica/include/
H A Dacnamesp.h490 char *FullPath,
/freebsd-12.1/contrib/llvm/lib/Support/Windows/
H A DPath.inc92 SmallString<2*MAX_PATH> FullPath("\\\\?\\");
97 FullPath.append(CurPath);
112 llvm::sys::path::remove_filename(FullPath);
114 llvm::sys::path::append(FullPath, *I);
116 return UTF8ToUTF16(FullPath, Path16);
/freebsd-12.1/contrib/subversion/subversion/libsvn_subr/
H A Dwin32_crashrpt.c174 char *buf = convert_wbcs_to_ansi(module.FullPath); in write_module_info_callback()
/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp200 StringRef FullPath = getFullFilepath(F); in maybeRecordFile() local
202 auto Insertion = FileIdMap.insert(std::make_pair(FullPath, NextId)); in maybeRecordFile()
218 bool Success = OS.EmitCVFileDirective(NextId, FullPath, ChecksumAsBytes, in maybeRecordFile()