Home
last modified time | relevance | path

Searched refs:linkPath (Results 1 – 6 of 6) sorted by relevance

/external/lzma/CPP/7zip/UI/Common/
DArchiveExtractCallback.cpp638 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 …]
DArchiveExtractCallback.h338 UString linkPath; variable
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/
DJimfsFileSystemProvider.java222 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/
Dclang_flags.go183 if linkPath, err := os.Readlink(linkerPath); err == nil {
184 linkerPath = linkPath
/external/llvm-project/clang/lib/Driver/ToolChains/
DMSVC.cpp523 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/
DTools.cpp10116 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()