Searched refs:linkPath (Results 1 – 6 of 6) sorted by relevance
/external/lzma/CPP/7zip/UI/Common/ |
D | ArchiveExtractCallback.cpp | 638 linkPath.Empty(); in GetStream() 687 linkPath.SetFromBstr(prop.bstrVal); in GetStream() 717 linkPath.SetFromBstr(prop.bstrVal); in GetStream() 726 if (linkPath.IsEmpty() && _arc->GetRawProps) in GetStream() 746 linkPath = reparse.GetPath(); in GetStream() 750 linkPath.Replace(L'\\', WCHAR_PATH_SEPARATOR); in GetStream() 756 if (!linkPath.IsEmpty()) in GetStream() 759 linkPath.Replace(L'/', WCHAR_PATH_SEPARATOR); in GetStream() 763 if (linkPath.IsPrefixedBy(WSTRING_PATH_SEPARATOR L"??" WSTRING_PATH_SEPARATOR)) in GetStream() 766 linkPath.DeleteFrontal(4); in GetStream() [all …]
|
D | ArchiveExtractCallback.h | 338 UString linkPath; variable
|
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/ |
D | JimfsFileSystemProvider.java | 222 JimfsPath linkPath = checkPath(link); in createLink() local 225 linkPath.getFileSystem().equals(existingPath.getFileSystem()), in createLink() 227 FileSystemView view = getDefaultView(linkPath); in createLink() 228 view.link(linkPath, getDefaultView(existingPath), existingPath); in createLink() 234 JimfsPath linkPath = checkPath(link); in createSymbolicLink() local 237 linkPath.getFileSystem().equals(targetPath.getFileSystem()), in createSymbolicLink() 239 FileSystemView view = getDefaultView(linkPath); in createSymbolicLink() 240 view.createSymbolicLink(linkPath, targetPath, attrs); in createSymbolicLink()
|
/external/toolchain-utils/compiler_wrapper/ |
D | clang_flags.go | 183 if linkPath, err := os.Readlink(linkerPath); err == nil { 184 linkerPath = linkPath
|
/external/llvm-project/clang/lib/Driver/ToolChains/ |
D | MSVC.cpp | 523 llvm::SmallString<128> linkPath; in ConstructJob() local 532 linkPath = FindVisualStudioExecutable(TC, "link.exe"); in ConstructJob() 534 if (!TC.FoundMSVCInstall() && !llvm::sys::fs::can_execute(linkPath)) { in ConstructJob() 538 linkPath = llvm::sys::path::parent_path(ClPath); in ConstructJob() 539 llvm::sys::path::append(linkPath, "link.exe"); in ConstructJob() 540 if (!llvm::sys::fs::can_execute(linkPath)) in ConstructJob() 608 linkPath = TC.GetProgramPath(Linker.str().c_str()); in ConstructJob() 613 Args.MakeArgString(linkPath), CmdArgs, Inputs, Output); in ConstructJob()
|
/external/clang/lib/Driver/ |
D | Tools.cpp | 10116 llvm::SmallString<128> linkPath; in ConstructJob() local 10125 linkPath = FindVisualStudioExecutable(TC, "link.exe", in ConstructJob() 10128 linkPath = Linker; in ConstructJob() 10129 llvm::sys::path::replace_extension(linkPath, "exe"); in ConstructJob() 10130 linkPath = TC.GetProgramPath(linkPath.c_str()); in ConstructJob() 10133 const char *Exec = Args.MakeArgString(linkPath); in ConstructJob()
|