Home
last modified time | relevance | path

Searched refs:fsid (Results 1 – 8 of 8) sorted by relevance

/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DFileInfo.h86 inline bool operator==(const FileSystemId& fsid) const;
87 inline bool operator!=(const FileSystemId& fsid) const;
152 FileSystemId::operator==(const FileSystemId& fsid) const
154 return fMajor == fsid.fMajor && fMinor == fsid.fMinor;
159 FileSystemId::operator!=(const FileSystemId& fsid) const
161 return !operator==(fsid);
H A DReplyInterpreter.cpp723 FileSystemId fsid; in _DecodeAttrs() local
724 fsid.fMajor = stream.GetUHyper(); in _DecodeAttrs()
725 fsid.fMinor = stream.GetUHyper(); in _DecodeAttrs()
727 values[current].fData.fPointer = malloc(sizeof(fsid)); in _DecodeAttrs()
728 memcpy(values[current].fData.fPointer, &fsid, sizeof(fsid)); in _DecodeAttrs()
H A DInodeDir.cpp254 FileSystemId* fsid = reinterpret_cast<FileSystemId*>(data); in GetDirSnapshot() local
255 if (*fsid != fFileSystem->FsId()) in GetDirSnapshot()
H A DFileSystem.cpp211 FileSystemId* fsid in Mount() local
227 fs->fFsId = *fsid; in Mount()
H A DInode.cpp116 FileSystemId* fsid in CreateInode() local
118 if (*fsid != fs->FsId()) { in CreateInode()
H A DNFS4Inode.cpp188 FileSystemId* fsid in LookUp() local
190 if (*fsid != fFileSystem->FsId()) { in LookUp()
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A Dbtrfs.h101 uuid_t fsid; member
217 uuid_t fsid; member
223 uuid_t fsid; member
H A DVolume.cpp59 uuid_generate(fsid); in Initialize()