HomeSort by: relevance | last modified time | path
    Searched defs:vfs (Results 1 - 24 of 24) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
SanitizerSpecialCaseList.h 25 namespace vfs { namespace in namespace:llvm
35 create(const std::vector<std::string> &Paths, llvm::vfs::FileSystem &VFS,
40 llvm::vfs::FileSystem &VFS);
FileEntry.h 31 namespace vfs { namespace in namespace:llvm
35 } // namespace vfs
344 mutable std::unique_ptr<llvm::vfs::File> File;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
SpecialCaseList.h 65 namespace vfs { namespace in namespace:llvm
74 create(const std::vector<std::string> &Paths, llvm::vfs::FileSystem &FS,
83 createOrDie(const std::vector<std::string> &Paths, llvm::vfs::FileSystem &FS);
110 vfs::FileSystem &VFS, std::string &Error);
VirtualFileSystem.h 10 /// Defines the virtual file system interface vfs::FileSystem.
43 namespace vfs { namespace in namespace:llvm
300 /// Gets an \p vfs::FileSystem for the 'real' file system, as seen by
306 /// Create an \p vfs::FileSystem for the 'real' file system, as seen by
434 /// Add a file containing a buffer or a directory to the VFS with a
435 /// path. The VFS owns the buffer. If present, User, Group, Type
460 /// Add a buffer to the VFS with a path. The VFS does not own the buffer.
599 class RedirectingFileSystem : public vfs::FileSystem {
604 /// A single file or directory in the VFS
    [all...]
CommandLine.h 46 namespace vfs { namespace in namespace:llvm
2101 llvm::vfs::FileSystem &FS);
2104 /// llvm::vfs::getRealFileSystem().
  /src/sbin/resize_lfs/
resize_lfs.c 72 struct statvfs vfs; local
98 if (statvfs(fsname, &vfs) < 0)
100 rdevlen = strlen(vfs.f_mntfromname) + 2;
102 if (getdiskrawname(rdev, rdevlen, vfs.f_mntfromname) == NULL)
103 err(1, "Could not convert '%s' to raw name", vfs.f_mntfromname);
  /src/external/bsd/dhcpcd/dist/src/
common.c 208 struct statvfs vfs; local
210 if (statvfs("/", &vfs) == -1)
212 return vfs.f_flag & ST_LOCAL ? 1 : 0;
  /src/sys/sys/
vnode_impl.h 159 SDT_PROVIDER_DECLARE(vfs); variable
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
CompilerInvocation.h 38 namespace vfs { namespace in namespace:llvm
42 } // namespace vfs
283 IntrusiveRefCntPtr<llvm::vfs::FileSystem>
287 IntrusiveRefCntPtr<llvm::vfs::FileSystem> createVFSFromCompilerInvocation(
289 IntrusiveRefCntPtr<llvm::vfs::FileSystem> BaseFS);
PrecompiledPreamble.h 30 namespace vfs { namespace in namespace:llvm
71 /// \param VFS An instance of vfs::FileSystem to be used for file
85 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS,
109 PreambleBounds Bounds, llvm::vfs::FileSystem &VFS) const;
112 /// main file to \p MainFileBuffer and updates \p VFS to ensure the preamble
120 IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS,
    [all...]
ASTUnit.h 53 namespace vfs { namespace in namespace:llvm
57 } // namespace vfs
372 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS);
377 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, bool AllowRebuild = true,
709 /// \param VFS - A llvm::vfs::FileSystem to be used for all file accesses.
711 /// so in order for it to be loaded correctly, VFS should have access to
719 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS)
    [all...]
  /src/sys/kern/
vfs_init.c 105 SDT_PROVIDER_DEFINE(vfs); variable
119 struct vfs_list_head vfs_list = /* vfs list */
156 SYSCTL_DESCR("Non-specific vfs related information"),
438 * Initialise VFS hooks.
461 vfs_delref(struct vfsops *vfs)
465 vfs->vfs_refcount--;
473 vfs_attach(struct vfsops *vfs)
486 if (strcmp(vfs->vfs_name, v->vfs_name) == 0) {
491 fstype = makefstype(vfs->vfs_name);
496 vfs->vfs_name, fstype, v->vfs_name)
577 struct vfsops *vfs; local
    [all...]
  /src/share/examples/refuse/fanoutfs/
fanoutfs.c 56 static struct stat vfs; /* stat info of directory */ variable in typeref:struct:stat
340 st->f_owner = vfs.st_uid;
  /src/share/examples/refuse/icfs/
icfs.c 57 static struct stat vfs; /* stat info of directory */ variable in typeref:struct:stat
223 st->f_owner = vfs.st_uid;
  /src/usr.bin/pmap/
pmap.c 333 struct kbit *uvm_obj, *vp, *vfs; local
348 vfs = &kbit[2];
352 A(vfs) = 0;
418 A(vfs) = 0;
421 P(vfs) = D(vp, vnode)->v_mount;
422 S(vfs) = sizeof(struct mount);
423 KDEREF(kd, vfs);
424 D(vp, vnode)->v_mount = D(vfs, mount);
460 name = findname(kd, vmspace, vm_map_entry, vp, vfs, uvm_obj);
748 struct kbit *vfs, struct kbit *uvm_obj
    [all...]
  /src/sys/ufs/lfs/
lfs_kclean.c 812 struct vfsops *vfs = NULL; local
817 vfs = vfs_getopsbyname(MOUNT_LFS);
871 if (vfs != NULL)
872 vfs->vfs_refcount--;
lfs_vfsops.c 273 * more instance of the "number to vfs" mapping problem, but
425 struct vfsops *vfs = NULL; local
436 vfs = vfs_getopsbyname(MOUNT_LFS);
547 if (vfs != NULL)
548 vfs->vfs_refcount--;
651 * VFS Operations.
  /src/external/apache2/llvm/dist/clang/include/clang/Driver/
Driver.h 32 namespace vfs { namespace in namespace:llvm
62 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS;
315 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS = nullptr);
329 llvm::vfs::FileSystem &getVFS() const { return *VFS; }
ToolChain.h 43 namespace vfs { namespace in namespace:llvm
47 } // namespace vfs
215 llvm::vfs::FileSystem &getVFS() const;
  /src/external/apache2/llvm/dist/clang/include/clang/Format/
Format.h 26 namespace vfs { namespace in namespace:llvm
3645 llvm::vfs::FileSystem *FS = nullptr,
  /src/external/apache2/llvm/dist/llvm/lib/Support/
VirtualFileSystem.cpp 57 using namespace llvm::vfs;
346 IntrusiveRefCntPtr<FileSystem> vfs::getRealFileSystem() {
351 std::unique_ptr<FileSystem> vfs::createPhysicalFileSystem() {
357 class RealFSDirIter : public llvm::vfs::detail::DirIterImpl {
451 llvm::vfs::detail::DirIterImpl::~DirIterImpl() = default;
456 class CombiningDirIterImpl : public llvm::vfs::detail::DirIterImpl {
457 using FileSystemPtr = llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem>;
545 namespace vfs { namespace in namespace:llvm
615 /// Adapt a InMemoryFile for VFS' File interface. The goal is to make
908 class InMemoryDirIterator : public llvm::vfs::detail::DirIterImpl
    [all...]
  /src/sys/dev/pci/ixgbe/
ixgbe.h 587 struct ixgbe_vf *vfs; member in struct:ixgbe_softc
  /src/crypto/external/apache2/openssl/dist/crypto/perlasm/
s390x.pm 88 vflndb wflndb vflpdb wflpdb vfsq vfsqdb wfsqdb vfs vfsdb wfsdb
2059 sub vfs { subroutine
2064 vfs(@_,3,0);
2067 vfs(@_,3,8);
2422 vfs(@_,2,0);
2425 vfs(@_,2,8);
2428 vfs(@_,4,8);
  /src/crypto/external/bsd/openssl/dist/crypto/perlasm/
s390x.pm 88 vflndb wflndb vflpdb wflpdb vfsq vfsqdb wfsqdb vfs vfsdb wfsdb
2059 sub vfs { subroutine
2064 vfs(@_,3,0);
2067 vfs(@_,3,8);
2422 vfs(@_,2,0);
2425 vfs(@_,2,8);
2428 vfs(@_,4,8);

Completed in 64 milliseconds