Searched refs:inode (Results 76 - 100 of 127) sorted by relevance

123456

/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DInode.cpp51 Inode* inode = NULL; local
53 inode = new(std::nothrow) RootInode;
55 inode = new(std::nothrow) Inode;
57 if (inode == NULL)
60 inode->fInfo = fi;
61 inode->fFileSystem = fs;
70 req.PutFH(inode->fInfo.fHandle);
82 if (inode->HandleErrors(attempt, reply.NFS4Error(), serv))
95 inode->fInfo.fFileId = fs->AllocFileId();
97 inode
[all...]
H A DMetadataCache.cpp17 MetadataCache::MetadataCache(Inode* inode) argument
21 fInode(inode),
24 ASSERT(inode != NULL);
H A DMetadataCache.h30 MetadataCache(Inode* inode);
H A DDirectoryCache.cpp79 DirectoryCache::DirectoryCache(Inode* inode, bool attr) argument
81 fExpirationTime(inode->fFileSystem->GetConfiguration().fDirectoryCacheTime),
83 fInode(inode),
87 ASSERT(inode != NULL);
H A DFileSystem.cpp240 Inode* inode; local
241 result = Inode::CreateInode(fs, fi, &inode);
244 RootInode* rootInode = reinterpret_cast<RootInode*>(inode);
284 Inode* inode;
285 result = Inode::CreateInode(this, fi, &inode);
289 *_inode = inode;
/haiku/src/bin/bfs_tools/
H A Drecover.cpp52 Inode* Acquire(Inode* inode) argument
54 if (inode == NULL)
57 status_t status = inode->AcquireBuffer();
59 fprintf(stderr, "Could not retrieve buffer for inode %"
60 B_PRIdOFF ": %s\n", inode->Offset(), strerror(status));
63 return inode;
66 void Release(Inode* inode) argument
68 inode->ReleaseBuffer();
76 bool Insert(Inode* inode) argument
78 bool success = fHashtable.Put(&inode
186 Inode *inode; local
[all...]
/haiku/src/add-ons/kernel/file_systems/xfs/
H A DLeafDirectory.cpp13 LeafDirectory::LeafDirectory(Inode* inode) argument
15 fInode(inode),
400 ExtentLeafHeader::ExpectedMagic(int8 WhichDirectory, Inode* inode) argument
403 if (inode->Version() == 1 || inode->Version() == 2)
408 if (inode->Version() == 1 || inode->Version() == 2)
424 ExtentLeafHeader::Create(Inode* inode, const char* buffer) argument
426 if (inode->Version() == 1 || inode
443 Size(Inode* inode) argument
[all...]
H A DSymlink.cpp12 Symlink::Symlink(Inode* inode) argument
14 fInode(inode),
75 // All symlinks contents are inside inode itself
H A DBPlusTree.h55 Inode* inode);
110 TreeDirectory(Inode* inode);
H A DNode.cpp12 NodeDirectory::NodeDirectory(Inode* inode) argument
14 fInode(inode),
458 NodeHeader::ExpectedMagic(int8 WhichDirectory, Inode* inode) argument
460 if (inode->Version() == 1 || inode->Version() == 2)
475 NodeHeader::Create(Inode* inode, const char* buffer) argument
477 if (inode->Version() == 1 || inode->Version() == 2) {
494 NodeHeader::Size(Inode* inode) argument
496 if (inode
[all...]
H A DShortDirectory.h33 // # of 64bit inode entries
35 // absolute inode # of parent
49 * and inode number (64bits or 32 bits)
56 ShortDirectory(Inode* inode);
H A DShortDirectory.cpp10 ShortDirectory::ShortDirectory(Inode* inode) argument
12 fInode(inode),
H A DShortAttribute.cpp10 ShortAttribute::ShortAttribute(Inode* inode) argument
12 fInode(inode),
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DVolume.h113 status_t Allocate(Transaction& transaction, Inode* inode,
130 void UpdateLiveQueries(Inode* inode,
134 void UpdateLiveQueriesRenameMove(Inode* inode,
220 Volume::Allocate(Transaction& transaction, Inode* inode, off_t numBlocks, argument
223 return fBlockAllocator.Allocate(transaction, inode, numBlocks, run,
H A Dbfs.h166 inline bool IsLast(const bfs_inode* inode) const;
395 small_data::IsLast(const bfs_inode* inode) const
400 return (addr_t)this > (addr_t)inode
401 + inode->InodeSize() - sizeof(small_data) || name_size == 0;
H A DDebug.h96 extern void dump_inode(const bfs_inode *inode);
H A DBlockAllocator.h37 status_t Allocate(Transaction& transaction, Inode* inode,
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DAttribute.cpp8 //! connection between pure inode and kernel_interface attributes
25 Attribute::Attribute(Inode* inode) argument
27 fVolume(inode->GetVolume()),
29 fInode(inode),
38 Attribute::Attribute(Inode* inode, attr_cookie* cookie) argument
40 fVolume(inode->GetVolume()),
42 fInode(inode),
H A DVolume.cpp265 TRACE("Opening an on disk, inode mapped journal.\n");
504 TRACE("group [%" B_PRId32 "]: inode table %" B_PRIu64 "\n", index,
616 ext2_inode* inode = (ext2_inode*)(block
621 (int)inode->NextOrphan());
622 fSuperBlock.SetLastOrphan(inode->NextOrphan());
627 currentID = inode->NextOrphan();
643 ext2_inode* inode = (ext2_inode*)(block local
646 currentID = inode->NextOrphan();
665 inode->deletion_time = removedInode->deletion_time;
667 (int)inode
[all...]
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A DFUSELowLevel.h45 int fuse_ll_opendir(const fuse_lowlevel_ops* ops, fuse_ino_t inode, struct fuse_file_info* ffi);
49 int fuse_ll_statfs(const fuse_lowlevel_ops* ops, fuse_ino_t inode, struct statvfs* stat);
/haiku/src/add-ons/kernel/file_systems/exfat/
H A DDirectoryIterator.h41 DirectoryIterator(Inode* inode);
H A DDirectoryIterator.cpp35 DirectoryIterator::DirectoryIterator(Inode* inode) argument
38 fCluster(inode->StartCluster()),
39 fInode(inode),
40 fBlock(inode->GetVolume()),
/haiku/src/bin/bfs_tools/lib/
H A Dbfs.h102 inline bool IsLast(bfs_inode *inode);
252 inline bool small_data::IsLast(bfs_inode *inode) argument
254 return (addr_t)this > (addr_t)inode + inode->inode_size - sizeof(small_data)
/haiku/src/add-ons/kernel/file_systems/ufs2/
H A DDirectoryIterator.h41 DirectoryIterator(Inode* inode);
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dlogfile.h450 le64 inode; member in struct:__anon1519
462 le64 inode; member in struct:__anon1520

Completed in 92 milliseconds

123456