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

12

/freebsd-12-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-12-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-12-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.cpp21 static Distro::DistroType DetectDistro(llvm::vfs::FileSystem &VFS, argument
35 if (!HostTriple.isOSLinux() && &VFS == RealFS.get())
39 VFS.getBufferForFile("/etc/lsb-release");
78 File = VFS.getBufferForFile("/etc/redhat-release");
96 File = VFS.getBufferForFile("/etc/debian_version");
131 File = VFS.getBufferForFile("/etc/SuSE-release");
154 if (VFS.exists("/etc/exherbo-release"))
157 if (VFS.exists("/etc/alpine-release"))
160 if (VFS.exists("/etc/arch-release"))
163 if (VFS
169 Distro(llvm::vfs::FileSystem &VFS, const llvm::Triple &TargetOrHost) argument
[all...]
H A DDriver.cpp123 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS)
124 : Diags(Diags), VFS(std::move(VFS)), Mode(GCCMode),
135 // Provide a sane fallback if no VFS is specified.
136 if (!this->VFS)
137 this->VFS = llvm::vfs::getRealFileSystem();
1026 if (VFS->setCurrentWorkingDirectory(WD->getValue()))
1377 SmallString<128> VFS; local
1390 VFS = llvm::sys::path::filename(TempFile);
1391 llvm::sys::path::append(VFS, "vf
121 Driver(StringRef ClangExecutable, StringRef TargetTriple, DiagnosticsEngine &Diags, IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DSanitizerSpecialCaseList.h28 create(const std::vector<std::string> &Paths, llvm::vfs::FileSystem &VFS,
33 llvm::vfs::FileSystem &VFS);
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Driver/
H A DDarwinSDKInfo.h35 Expected<Optional<DarwinSDKInfo>> parseDarwinSDKInfo(llvm::vfs::FileSystem &VFS,
H A DDistro.h87 /// Detects the distribution using specified VFS.
88 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-12-stable/contrib/llvm-project/clang/lib/Frontend/
H A DPrecompiledPreamble.cpp54 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) {
56 // so we create an in-memory VFS with just that and overlay it on top.
61 new llvm::vfs::OverlayFileSystem(VFS));
239 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS,
242 assert(VFS && "VFS is null");
314 VFS =
315 createVFSFromCompilerInvocation(Clang->getInvocation(), Diagnostics, VFS);
318 Clang->setFileManager(new FileManager(Clang->getFileSystemOpts(), VFS));
421 llvm::vfs::FileSystem *VFS) cons
52 createVFSOverlayForPreamblePCH(StringRef PCHFilename, std::unique_ptr<llvm::MemoryBuffer> PCHBuffer, IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) argument
235 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
509 AddImplicitPreamble( CompilerInvocation &CI, IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS, llvm::MemoryBuffer *MainFileBuffer) const argument
516 OverridePreamble( CompilerInvocation &CI, IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS, llvm::MemoryBuffer *MainFileBuffer) const argument
692 configurePreamble( PreambleBounds Bounds, CompilerInvocation &CI, IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS, llvm::MemoryBuffer *MainFileBuffer) const argument
713 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
1302 getMainBufferWithPrecompiledPreamble( std::shared_ptr<PCHContainerOperations> PCHContainerOps, CompilerInvocation &PreambleInvocationIn, IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, bool AllowRebuild, unsigned MaxLines) argument
1498 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS = local
1658 LoadFromCompilerInvocation( std::shared_ptr<PCHContainerOperations> PCHContainerOps, unsigned PrecompilePreambleAfterNParses, IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) argument
1729 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
1825 Reparse(std::shared_ptr<PCHContainerOperations> PCHContainerOps, ArrayRef<RemappedFile> RemappedFiles, IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) argument
2246 auto &VFS = FileMgr.getVirtualFileSystem(); local
2268 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS = local
[all...]
H A DCompilerInstance.cpp202 // Collect all VFS found.
311 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) {
312 if (!VFS)
313 VFS = FileMgr ? &FileMgr->getVirtualFileSystem()
316 assert(VFS && "FileManager has no VFS?");
317 FileMgr = new FileManager(getFileSystemOpts(), std::move(VFS));
310 createFileManager( IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) argument
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DPrecompiledPreamble.h68 /// \param VFS An instance of vfs::FileSystem to be used for file
82 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS,
101 llvm::vfs::FileSystem *VFS) const;
104 /// main file to \p MainFileBuffer and updates \p VFS to ensure the preamble
112 IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS,
119 IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS,
224 /// Helper function to set up PCH for the preamble into \p CI and \p VFS to
227 IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS,
230 /// Sets up the PreprocessorOptions and changes VFS, so that PCH stored in \p
236 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.h645 createFileManager(IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS = nullptr);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DSpecialCaseList.h108 vfs::FileSystem &VFS, std::string &Error);
/freebsd-12-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
/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/
H A DTooling.cpp78 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) {
81 *Diagnostics, std::move(VFS));
182 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS,
190 new FileManager(FileSystemOptions(), VFS));
334 // The driver is only aware of the VFS working directory, but some clients
453 // First insert all absolute paths into the in-memory VFS. These are global
518 // 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
180 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-12-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,
314 /// \param BaseFS VFS used for all underlying file accesses when running the
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DGnu.cpp911 llvm::vfs::FileSystem &VFS; member in class:__anon2998::FilterNonExistent
914 FilterNonExistent(StringRef Base, StringRef File, llvm::vfs::FileSystem &VFS) argument
915 : Base(Base), File(File), VFS(VFS) {}
917 return !VFS.exists(Base + M.gccSuffix() + File);
1050 static bool findMipsAndroidMultilibs(llvm::vfs::FileSystem &VFS, StringRef Path, argument
1078 if (VFS.exists(Path + "/mips-r6"))
1080 else if (VFS.exists(Path + "/32"))
H A DDarwin.cpp1675 Optional<DarwinSDKInfo> parseSDKSettings(llvm::vfs::FileSystem &VFS, argument
1682 auto SDKInfoOrErr = driver::parseDarwinSDKInfo(VFS, isysroot);

Completed in 127 milliseconds

12