Lines Matching defs:Inode

5 //!	BFS Inode classes
8 #include "Inode.h"
25 NodeGetter(Inode* inode)
38 Inode* fInode;
45 Inode::Inode(Disk* disk, bfs_inode* inode, bool ownBuffer)
61 Inode::Inode(const Inode& inode)
76 Inode::~Inode()
83 Inode::_Unset()
100 Inode::SetTo(bfs_inode *inode)
111 Inode::InitCheck()
154 Inode::CopyBuffer()
174 Inode::_LowMemory()
190 Inode::ReleaseBuffer()
206 Inode::AcquireBuffer()
227 Inode::BufferClobbered()
234 Inode::SetParent(const block_run& run)
242 Inode::SetBlockRun(const block_run& run)
251 Inode::SetMode(uint32 mode)
259 Inode::SetName(const char *name)
304 Inode::Name() const
320 Inode::GetNextSmallData(small_data **smallData)
343 Inode::RewindAttributes()
355 Inode::GetNextAttribute(char *name, uint32 *type, void **data, size_t *length)
387 fAttributes = (Directory *)Inode::Factory(fDisk, Attributes());
401 Attribute *attribute = (Attribute *)Inode::Factory(fDisk, run);
427 Inode::_FindPath(Inode::Source *source)
433 Inode *inode;
437 inode = Inode::Factory(fDisk, parent);
464 Inode::Path(Inode::Source *source)
474 Inode::CopyTo(const char *root, bool fullPath, Inode::Source *source)
493 Inode::CopyAttributesTo(BNode *node)
541 Inode *
542 Inode::Factory(Disk *disk, bfs_inode *inode, bool ownBuffer)
564 Inode *
565 Inode::Factory(Disk *disk, block_run run)
574 Inode *object = Factory(disk, inode);
582 Inode *
583 Inode::Factory(Disk *disk, Inode *inode, bool copyBuffer)
599 Inode *
600 Inode::EmptyInode(Disk *disk, const char *name, int32 mode)
622 Inode *object = new (std::nothrow) Inode(disk, inode);
636 : Inode(disk,inode,ownBuffer),
643 DataStream::DataStream(const Inode &inode)
644 : Inode(inode),
917 File::File(const Inode &inode)
940 File::CopyTo(const char *root, bool fullPath, Inode::Source *source)
942 status_t status = Inode::CopyTo(root, fullPath, source);
994 Attribute::Attribute(const Inode &inode)
1018 Inode::Source */*source*/)
1039 Directory::Directory(const Inode &inode)
1064 Directory::CopyTo(const char *root, bool fullPath, Inode::Source *source)
1071 status_t status = Inode::CopyTo(root, fullPath, source);
1173 Directory::Contains(const Inode *inode)
1227 Directory::AddEntry(Inode *inode)
1305 : Inode(disk,inode,ownBuffer)
1310 Symlink::Symlink(const Inode &inode)
1311 : Inode(inode)
1324 status_t status = Inode::InitCheck();
1333 Symlink::CopyTo(const char *root, bool fullPath,Inode::Source *source)
1335 status_t status = Inode::CopyTo(root,fullPath,source);