| /freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/ |
| HD | Distro.cpp | 23 static Distro::DistroType DetectOsRelease(llvm::vfs::FileSystem &VFS) { in DetectOsRelease() argument 25 VFS.getBufferForFile("/etc/os-release"); in DetectOsRelease() 27 File = VFS.getBufferForFile("/usr/lib/os-release"); in DetectOsRelease() 51 static Distro::DistroType DetectLsbRelease(llvm::vfs::FileSystem &VFS) { in DetectLsbRelease() argument 53 VFS.getBufferForFile("/etc/lsb-release"); in DetectLsbRelease() 103 static Distro::DistroType DetectDistro(llvm::vfs::FileSystem &VFS) { in DetectDistro() argument 108 Version = DetectOsRelease(VFS); in DetectDistro() 113 Version = DetectLsbRelease(VFS); in DetectDistro() 119 VFS.getBufferForFile("/etc/redhat-release"); in DetectDistro() 138 File = VFS.getBufferForFile("/etc/debian_version"); in DetectDistro() [all …]
|
| /freebsd-13-stable/tests/sys/cddl/zfs/tests/cli_root/zpool_expand/ |
| HD | zpool_expand_002_pos.ksh | 68 if datasetexists $VFS/vol$i; then 69 log_must $ZFS destroy $VFS/vol$i 79 log_must $ZFS create -V $org_size $VFS/vol$i 84 /dev/zvol/$VFS/vol1 \ 85 /dev/zvol/$VFS/vol2 \ 86 /dev/zvol/$VFS/vol3 96 log_must $ZFS set volsize=$exp_size $VFS/vol$i 100 log_must $ZPOOL online -e $TESTPOOL1 /dev/zvol/$VFS/vol$i 135 log_must $ZFS set volsize=$org_size $VFS/vol$i
|
| HD | zpool_expand_003_neg.ksh | 67 if datasetexists $VFS/vol$i; then 68 log_must $ZFS destroy $VFS/vol$i 78 log_must $ZFS create -V $org_size $VFS/vol$i 83 /dev/zvol/$VFS/vol1 \ 84 /dev/zvol/$VFS/vol2 \ 85 /dev/zvol/$VFS/vol3 95 log_must $ZFS set volsize=$exp_size $VFS/vol$i 121 log_must $ZFS set volsize=$org_size $VFS/vol$i
|
| HD | zpool_expand_001_pos.ksh | 67 if datasetexists $VFS/vol$i; then 68 log_must $ZFS destroy $VFS/vol$i 78 log_must $ZFS create -V $org_size $VFS/vol$i 84 /dev/zvol/$VFS/vol1 \ 85 /dev/zvol/$VFS/vol2 \ 86 /dev/zvol/$VFS/vol3 96 log_must $ZFS set volsize=$exp_size $VFS/vol$i 131 log_must $ZFS set volsize=$org_size $VFS/vol$i
|
| HD | zpool_expand.cfg | 37 VFS=$TESTPOOL/$TESTFS 38 export VFS
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/WindowsDriver/ |
| HD | MSVCPaths.cpp | 63 getHighestNumericTupleInDirectory(llvm::vfs::FileSystem &VFS, in getHighestNumericTupleInDirectory() argument 69 for (llvm::vfs::directory_iterator DirIt = VFS.dir_begin(Directory, EC), in getHighestNumericTupleInDirectory() 72 auto Status = VFS.status(DirIt->path()); in getHighestNumericTupleInDirectory() 88 static bool getWindows10SDKVersionFromPath(llvm::vfs::FileSystem &VFS, in getWindows10SDKVersionFromPath() argument 93 SDKVersion = getHighestNumericTupleInDirectory(VFS, IncludePath); in getWindows10SDKVersionFromPath() 98 llvm::vfs::FileSystem &VFS, std::optional<llvm::StringRef> WinSdkDir, in getWindowsSDKDirViaCommandLine() argument 116 SDKPath, getHighestNumericTupleInDirectory(VFS, SDKPath)); in getWindowsSDKDirViaCommandLine() 125 } else if (getWindows10SDKVersionFromPath(VFS, Path, Version)) { in getWindowsSDKDirViaCommandLine() 394 Triple::ArchType TargetArch, vfs::FileSystem &VFS) { in useUniversalCRT() argument 398 return !VFS.exists(TestPath); in useUniversalCRT() [all …]
|
| /freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/ |
| HD | PrecompiledPreamble.cpp | 57 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) { in createVFSOverlayForPreamblePCH() argument 64 new llvm::vfs::OverlayFileSystem(VFS)); in createVFSOverlayForPreamblePCH() 417 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, in Build() argument 420 assert(VFS && "VFS is null"); in Build() 484 VFS = in Build() 485 createVFSFromCompilerInvocation(Clang->getInvocation(), Diagnostics, VFS); in Build() 488 Clang->setFileManager(new FileManager(Clang->getFileSystemOpts(), VFS)); in Build() 605 llvm::vfs::FileSystem &VFS) const { in CanReuse() 634 if (!moveOnNoError(VFS.status(R.second), Status)) { in CanReuse() 641 if (!VFS.makeAbsolute(MappedPath)) in CanReuse() [all …]
|
| HD | ASTUnit.cpp | 159 llvm::vfs::FileSystem *VFS, in getBufferForFileHandlingRemapping() argument 168 auto FileStatus = VFS->status(FilePath); in getBufferForFileHandlingRemapping() 175 auto MPathStatus = VFS->status(MPath); in getBufferForFileHandlingRemapping() 180 BufferOwner = valueOrNull(VFS->getBufferForFile(RF.second, -1, true, isVolatile)); in getBufferForFileHandlingRemapping() 191 auto MPathStatus = VFS->status(MPath); in getBufferForFileHandlingRemapping() 205 BufferOwner = valueOrNull(VFS->getBufferForFile(FilePath, -1, true, isVolatile)); in getBufferForFileHandlingRemapping() 807 bool UserFilesAreVolatile, IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) { in LoadFromASTFile() argument 823 AST->FileMgr = new FileManager(FileSystemOpts, VFS); in LoadFromASTFile() 1145 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) { in Parse() argument 1149 if (VFS && FileMgr) in Parse() [all …]
|
| /freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/WindowsDriver/ |
| HD | MSVCPaths.h | 64 llvm::vfs::FileSystem &VFS); 67 bool getWindowsSDKDir(vfs::FileSystem &VFS, 75 bool getUniversalCRTSdkDir(vfs::FileSystem &VFS, 83 vfs::FileSystem &VFS, std::optional<llvm::StringRef> VCToolsDir, 89 bool findVCToolChainViaEnvironment(vfs::FileSystem &VFS, std::string &Path, 99 findVCToolChainViaSetupConfig(vfs::FileSystem &VFS,
|
| /freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/ |
| HD | ProfileList.cpp | 29 create(const std::vector<std::string> &Paths, llvm::vfs::FileSystem &VFS, 34 llvm::vfs::FileSystem &VFS); 48 llvm::vfs::FileSystem &VFS, in create() argument 51 if (PSCL->createInternal(Paths, VFS, Error)) in create() 58 llvm::vfs::FileSystem &VFS) { in createOrDie() argument 60 if (auto PSCL = create(Paths, VFS, Error)) in createOrDie()
|
| HD | SanitizerSpecialCaseList.cpp | 19 llvm::vfs::FileSystem &VFS, in create() argument 23 if (SSCL->createInternal(Paths, VFS, Error)) { in create() 32 llvm::vfs::FileSystem &VFS) { in createOrDie() argument 34 if (auto SSCL = create(Paths, VFS, Error)) in createOrDie()
|
| HD | DarwinSDKInfo.cpp | 132 clang::parseDarwinSDKInfo(llvm::vfs::FileSystem &VFS, StringRef SDKRootPath) { in parseDarwinSDKInfo() argument 136 VFS.getBufferForFile(Filepath); in parseDarwinSDKInfo()
|
| /freebsd-13-stable/contrib/llvm-project/clang/include/clang/Frontend/ |
| HD | PrecompiledPreamble.h | 88 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, 114 PreambleBounds Bounds, llvm::vfs::FileSystem &VFS) const; 125 IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS, 132 IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS, 174 IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS, 183 IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS);
|
| HD | ASTUnit.h | 375 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS); 380 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, bool AllowRebuild = true, 705 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS = 726 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS); 853 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS = nullptr); 868 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS = nullptr);
|
| /freebsd-13-stable/contrib/llvm-project/clang/lib/Testing/ |
| HD | TestAST.cpp | 109 auto VFS = llvm::makeIntrusiveRefCnt<llvm::vfs::InMemoryFileSystem>(); in TestAST() local 110 if (auto Err = VFS->setCurrentWorkingDirectory(In.WorkingDir)) in TestAST() 112 VFS->addFile(Filename, /*ModificationTime=*/0, in TestAST() 115 VFS->addFile( in TestAST() 118 Clang->createFileManager(VFS); in TestAST()
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| HD | COFFVCRuntimeSupport.cpp | 159 IntrusiveRefCntPtr<vfs::FileSystem> VFS = vfs::getRealFileSystem(); in getMSVCToolchainPath() local 160 if (!findVCToolChainViaCommandLine(*VFS, std::nullopt, std::nullopt, in getMSVCToolchainPath() 162 !findVCToolChainViaEnvironment(*VFS, VCToolChainPath, VSLayout) && in getMSVCToolchainPath() 163 !findVCToolChainViaSetupConfig(*VFS, {}, VCToolChainPath, VSLayout) && in getMSVCToolchainPath() 170 if (!getUniversalCRTSdkDir(*VFS, std::nullopt, std::nullopt, std::nullopt, in getMSVCToolchainPath()
|
| /freebsd-13-stable/contrib/llvm-project/clang/lib/Interpreter/ |
| HD | DeviceOffload.h | 27 llvm::IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> VFS, 46 llvm::IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> VFS; variable
|
| HD | DeviceOffload.cpp | 32 HostParser(HostParser), VFS(FS) { in IncrementalCUDADeviceParser() 60 VFS->addFile(FatbinFileName, 0, in Parse()
|
| /freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/ |
| HD | SanitizerSpecialCaseList.h | 35 create(const std::vector<std::string> &Paths, llvm::vfs::FileSystem &VFS, 40 llvm::vfs::FileSystem &VFS);
|
| /freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/ |
| HD | BackendConsumer.h | 73 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, 87 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS,
|
| HD | BackendUtil.cpp | 141 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS; member in __anon0824b31d0111::EmitAssemblyHelper 214 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) in EmitAssemblyHelper() argument 216 TargetOpts(TOpts), LangOpts(LOpts), TheModule(M), VFS(std::move(VFS)), in EmitAssemblyHelper() 795 CodeGenOpts.MemoryProfileUsePath, VFS, in RunOptimizationPipeline() 802 CodeGenOpts.MemoryProfileUsePath, VFS, PGOOptions::SampleUse, in RunOptimizationPipeline() 807 PGOOpt = PGOOptions("", "", "", CodeGenOpts.MemoryProfileUsePath, VFS, in RunOptimizationPipeline() 1297 BackendAction Action, IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, in EmitBackendOutput() argument 1340 EmitAssemblyHelper AsmHelper(Diags, HeaderOpts, CGOpts, TOpts, LOpts, M, VFS); in EmitBackendOutput()
|
| /freebsd-13-stable/contrib/netbsd-tests/fs/nfs/nfsservice/ |
| HD | exports | 9 # but this is enough for the current VFS level tests.
|
| /freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/ |
| HD | DependencyScanningService.h | 61 VFS = 4, enumerator
|
| /freebsd-13-stable/contrib/llvm-project/clang/include/clang/CodeGen/ |
| HD | BackendUtil.h | 48 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS,
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/ |
| HD | SpecialCaseList.cpp | 108 vfs::FileSystem &VFS, std::string &Error) { in createInternal() argument 111 VFS.getBufferForFile(Path); in createInternal()
|