Searched refs:VFS (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-13-stable/tests/sys/cddl/zfs/tests/cli_root/zpool_expand/
H A Dzpool_expand_001_pos.ksh69 if datasetexists $VFS/vol$i; then
70 log_must $ZFS destroy $VFS/vol$i
80 log_must $ZFS create -V $org_size $VFS/vol$i
86 /dev/zvol/$VFS/vol1 \
87 /dev/zvol/$VFS/vol2 \
88 /dev/zvol/$VFS/vol3
98 log_must $ZFS set volsize=$exp_size $VFS/vol$i
133 log_must $ZFS set volsize=$org_size $VFS/vol$i
H A Dzpool_expand_003_neg.ksh69 if datasetexists $VFS/vol$i; then
70 log_must $ZFS destroy $VFS/vol$i
80 log_must $ZFS create -V $org_size $VFS/vol$i
85 /dev/zvol/$VFS/vol1 \
86 /dev/zvol/$VFS/vol2 \
87 /dev/zvol/$VFS/vol3
97 log_must $ZFS set volsize=$exp_size $VFS/vol$i
123 log_must $ZFS set volsize=$org_size $VFS/vol$i
H A Dzpool_expand_002_pos.ksh70 if datasetexists $VFS/vol$i; then
71 log_must $ZFS destroy $VFS/vol$i
81 log_must $ZFS create -V $org_size $VFS/vol$i
86 /dev/zvol/$VFS/vol1 \
87 /dev/zvol/$VFS/vol2 \
88 /dev/zvol/$VFS/vol3
98 log_must $ZFS set volsize=$exp_size $VFS/vol$i
102 log_must $ZPOOL online -e $TESTPOOL1 /dev/zvol/$VFS/vol$i
137 log_must $ZFS set volsize=$org_size $VFS/vol$i
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
H A DSanitizerSpecialCaseList.cpp19 llvm::vfs::FileSystem &VFS,
23 if (SSCL->createInternal(Paths, VFS, Error)) {
32 llvm::vfs::FileSystem &VFS) {
34 if (auto SSCL = create(Paths, VFS, Error))
18 create(const std::vector<std::string> &Paths, llvm::vfs::FileSystem &VFS, std::string &Error) argument
31 createOrDie(const std::vector<std::string> &Paths, llvm::vfs::FileSystem &VFS) argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/
H A DDarwinSDKInfo.cpp19 driver::parseDarwinSDKInfo(llvm::vfs::FileSystem &VFS, StringRef SDKRootPath) { argument
23 VFS.getBufferForFile(Filepath);
H A DDistro.cpp22 static Distro::DistroType DetectDistro(llvm::vfs::FileSystem &VFS, argument
36 if (!HostTriple.isOSLinux() && &VFS == RealFS.get())
40 VFS.getBufferForFile("/etc/lsb-release");
80 File = VFS.getBufferForFile("/etc/redhat-release");
98 File = VFS.getBufferForFile("/etc/debian_version");
133 File = VFS.getBufferForFile("/etc/SuSE-release");
156 if (VFS.exists("/etc/exherbo-release"))
159 if (VFS.exists("/etc/alpine-release"))
162 if (VFS.exists("/etc/arch-release"))
165 if (VFS
171 Distro(llvm::vfs::FileSystem &VFS, const llvm::Triple &TargetOrHost) argument
[all...]
H A DDriver.cpp125 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS)
126 : Diags(Diags), VFS(std::move(VFS)), Mode(GCCMode),
136 // Provide a sane fallback if no VFS is specified.
137 if (!this->VFS)
138 this->VFS = llvm::vfs::getRealFileSystem();
1058 if (VFS->setCurrentWorkingDirectory(WD->getValue()))
1405 SmallString<128> VFS; local
1418 VFS = llvm::sys::path::filename(TempFile);
1419 llvm::sys::path::append(VFS, "vf
123 Driver(StringRef ClangExecutable, StringRef TargetTriple, DiagnosticsEngine &Diags, IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DSanitizerSpecialCaseList.h35 create(const std::vector<std::string> &Paths, llvm::vfs::FileSystem &VFS,
40 llvm::vfs::FileSystem &VFS);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Driver/
H A DDarwinSDKInfo.h35 Expected<Optional<DarwinSDKInfo>> parseDarwinSDKInfo(llvm::vfs::FileSystem &VFS,
H A DDistro.h88 /// Detects the distribution using specified VFS.
89 explicit Distro(llvm::vfs::FileSystem &VFS, const llvm::Triple &TargetOrHost);
H A DDriver.h62 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS; member in class:clang::driver::Driver
305 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS = nullptr);
319 llvm::vfs::FileSystem &getVFS() const { return *VFS; }
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/
H A DPrecompiledPreamble.cpp59 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) {
61 // so we create an in-memory VFS with just that and overlay it on top.
66 new llvm::vfs::OverlayFileSystem(VFS));
310 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS,
313 assert(VFS && "VFS is null");
386 VFS =
387 createVFSFromCompilerInvocation(Clang->getInvocation(), Diagnostics, VFS);
390 Clang->setFileManager(new FileManager(Clang->getFileSystemOpts(), VFS));
498 llvm::vfs::FileSystem *VFS) cons
57 createVFSOverlayForPreamblePCH(StringRef PCHFilename, std::unique_ptr<llvm::MemoryBuffer> PCHBuffer, IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) argument
306 Build( const CompilerInvocation &Invocation, const llvm::MemoryBuffer *MainFileBuffer, PreambleBounds Bounds, DiagnosticsEngine &Diagnostics, IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, std::shared_ptr<PCHContainerOperations> PCHContainerOps, bool StoreInMemory, PreambleCallbacks &Callbacks) argument
606 AddImplicitPreamble( CompilerInvocation &CI, IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS, llvm::MemoryBuffer *MainFileBuffer) const argument
613 OverridePreamble( CompilerInvocation &CI, IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS, llvm::MemoryBuffer *MainFileBuffer) const argument
791 configurePreamble( PreambleBounds Bounds, CompilerInvocation &CI, IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS, llvm::MemoryBuffer *MainFileBuffer) const argument
812 setupPreambleStorage( const PCHStorage &Storage, PreprocessorOptions &PreprocessorOpts, IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS) argument
[all...]
H A DCreateInvocationFromCommandLine.cpp29 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, bool ShouldRecoverOnErorrs,
44 *Diags, VFS);
27 createInvocationFromCommandLine( ArrayRef<const char *> ArgList, IntrusiveRefCntPtr<DiagnosticsEngine> Diags, IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, bool ShouldRecoverOnErorrs, std::vector<std::string> *CC1Args) argument
H A DASTUnit.cpp159 llvm::vfs::FileSystem *VFS,
168 auto FileStatus = VFS->status(FilePath);
175 auto MPathStatus = VFS->status(MPath);
180 BufferOwner = valueOrNull(VFS->getBufferForFile(RF.second, -1, true, isVolatile));
191 auto MPathStatus = VFS->status(MPath);
205 BufferOwner = valueOrNull(VFS->getBufferForFile(FilePath, -1, true, isVolatile));
778 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS = local
780 AST->FileMgr = new FileManager(FileSystemOpts, VFS);
1101 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) {
1105 if (VFS
158 getBufferForFileHandlingRemapping(const CompilerInvocation &Invocation, llvm::vfs::FileSystem *VFS, StringRef FilePath, bool isVolatile) argument
1099 Parse(std::shared_ptr<PCHContainerOperations> PCHContainerOps, std::unique_ptr<llvm::MemoryBuffer> OverrideMainBuffer, IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) argument
1303 getMainBufferWithPrecompiledPreamble( std::shared_ptr<PCHContainerOperations> PCHContainerOps, CompilerInvocation &PreambleInvocationIn, IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, bool AllowRebuild, unsigned MaxLines) argument
1499 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS = local
1660 LoadFromCompilerInvocation( std::shared_ptr<PCHContainerOperations> PCHContainerOps, unsigned PrecompilePreambleAfterNParses, IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) argument
1731 LoadFromCommandLine( const char **ArgBegin, const char **ArgEnd, std::shared_ptr<PCHContainerOperations> PCHContainerOps, IntrusiveRefCntPtr<DiagnosticsEngine> Diags, StringRef ResourceFilesPath, bool OnlyLocalDecls, CaptureDiagsKind CaptureDiagnostics, ArrayRef<RemappedFile> RemappedFiles, bool RemappedFilesKeepOriginalName, unsigned PrecompilePreambleAfterNParses, TranslationUnitKind TUKind, bool CacheCodeCompletionResults, bool IncludeBriefCommentsInCodeCompletion, bool AllowPCHWithCompilerErrors, SkipFunctionBodiesScope SkipFunctionBodies, bool SingleFileParse, bool UserFilesAreVolatile, bool ForSerialization, bool RetainExcludedConditionalBlocks, llvm::Optional<StringRef> ModuleFormat, std::unique_ptr<ASTUnit> *ErrAST, IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) argument
1828 Reparse(std::shared_ptr<PCHContainerOperations> PCHContainerOps, ArrayRef<RemappedFile> RemappedFiles, IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) argument
2250 auto &VFS = FileMgr.getVirtualFileSystem(); local
2272 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS = local
[all...]
H A DCompilerInstance.cpp206 // Collect all VFS found.
315 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) {
316 if (!VFS)
317 VFS = FileMgr ? &FileMgr->getVirtualFileSystem()
320 assert(VFS && "FileManager has no VFS?");
321 FileMgr = new FileManager(getFileSystemOpts(), std::move(VFS));
314 createFileManager( IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) argument
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DPrecompiledPreamble.h70 /// \param VFS An instance of vfs::FileSystem to be used for file
84 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS,
108 llvm::vfs::FileSystem *VFS) const;
111 /// main file to \p MainFileBuffer and updates \p VFS to ensure the preamble
119 IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS,
126 IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS,
232 /// Helper function to set up PCH for the preamble into \p CI and \p VFS to
235 IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS,
238 /// Sets up the PreprocessorOptions and changes VFS, so that PCH stored in \p
244 IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS);
[all...]
H A DASTUnit.h372 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS);
377 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, bool AllowRebuild = true,
708 /// \param VFS - A llvm::vfs::FileSystem to be used for all file accesses.
710 /// so in order for it to be loaded correctly, VFS should have access to
718 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS);
810 /// \param VFS - A llvm::vfs::FileSystem to be used for all file accesses.
812 /// so in order for it to be loaded correctly, VFS should have access to
814 /// if \p VFS is nullptr.
838 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS = nullptr);
843 /// \param VFS
[all...]
H A DUtils.h224 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS = nullptr,
H A DCompilerInstance.h643 createFileManager(IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS = nullptr);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DSpecialCaseList.h110 vfs::FileSystem &VFS, std::string &Error);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DSpecialCaseList.cpp100 vfs::FileSystem &VFS, std::string &Error) {
104 VFS.getBufferForFile(Path);
99 createInternal(const std::vector<std::string> &Paths, vfs::FileSystem &VFS, std::string &Error) argument
H A DVirtualFileSystem.cpp594 /// Adapt a InMemoryFile for VFS' File interface. The goal is to make
1384 // are properly canonicalized before read into the VFS.
1439 // are properly canonicalized before read into the VFS.
1475 // VFS root entries may be in either Posix or Windows style. Figure out
1625 // inside the VFS.
1686 // a VFS request, do not bother about symlinks in the path components
1896 RedirectingFileSystem *VFS = RedirectingFileSystem::create( local
1899 ErrorOr<RedirectingFileSystem::Entry *> RootE = VFS->lookupPath("/");
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/
H A DTooling.cpp78 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) {
81 *Diagnostics, std::move(VFS));
184 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS,
192 new FileManager(FileSystemOptions(), VFS));
336 // The driver is only aware of the VFS working directory, but some clients
455 // First insert all absolute paths into the in-memory VFS. These are global
520 // Now fill the in-memory VFS with the relative file mappings so it will
77 newDriver(DiagnosticsEngine *Diagnostics, const char *BinaryName, IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) argument
182 runToolOnCodeWithArgs( std::unique_ptr<FrontendAction> ToolAction, const Twine &Code, llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, const std::vector<std::string> &Args, const Twine &FileName, const Twine &ToolName, std::shared_ptr<PCHContainerOperations> PCHContainerOps) argument
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/
H A DTooling.h187 // Similar to the overload except this takes a VFS.
190 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS,
315 /// \param BaseFS VFS used for all underlying file accesses when running the
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DGnu.cpp961 llvm::vfs::FileSystem &VFS; member in class:__anon1863::FilterNonExistent
964 FilterNonExistent(StringRef Base, StringRef File, llvm::vfs::FileSystem &VFS) argument
965 : Base(Base), File(File), VFS(VFS) {}
967 return !VFS.exists(Base + M.gccSuffix() + File);
1100 static bool findMipsAndroidMultilibs(llvm::vfs::FileSystem &VFS, StringRef Path, argument
1128 if (VFS.exists(Path + "/mips-r6"))
1130 else if (VFS.exists(Path + "/32"))

Completed in 155 milliseconds

12