Lines Matching defs:Inode

6 //!	BFS Inode classes
9 #include "Inode.h"
26 NodeGetter(Inode* inode)
39 Inode* fInode;
46 Inode::Inode(Disk* disk, bfs_inode* inode, bool ownBuffer)
62 Inode::Inode(const Inode& inode)
77 Inode::~Inode()
84 Inode::_Unset()
101 Inode::SetTo(bfs_inode *inode)
112 Inode::InitCheck() const
155 Inode::CopyBuffer()
175 Inode::_LowMemory()
191 Inode::ReleaseBuffer()
207 Inode::AcquireBuffer()
228 Inode::BufferClobbered()
235 Inode::SetParent(const block_run& run)
243 Inode::SetBlockRun(const block_run& run)
252 Inode::SetMode(uint32 mode)
260 Inode::SetName(const char *name)
306 Inode::Name() const
326 Inode::GetNextSmallData(small_data **smallData)
349 Inode::RewindAttributes()
361 Inode::GetNextAttribute(char *name, uint32 *type, void **data, size_t *length)
393 fAttributes = (Directory *)Inode::Factory(fDisk, Attributes());
407 Attribute *attribute = (Attribute *)Inode::Factory(fDisk, run);
433 Inode::_FindPath(Inode::Source *source)
439 Inode *inode;
443 inode = Inode::Factory(fDisk, parent);
470 Inode::Path(Inode::Source *source)
480 Inode::CopyTo(const char *root, bool fullPath, Inode::Source *source)
499 Inode::CopyAttributesTo(BNode *node)
547 Inode *
548 Inode::Factory(Disk *disk, bfs_inode *inode, bool ownBuffer)
570 Inode *
571 Inode::Factory(Disk *disk, block_run run)
580 Inode *object = Factory(disk, inode);
588 Inode *
589 Inode::Factory(Disk *disk, Inode *inode, bool copyBuffer)
605 Inode *
606 Inode::EmptyInode(Disk *disk, const char *name, int32 mode)
628 Inode *object = new (std::nothrow) Inode(disk, inode);
644 : Inode(disk,inode,ownBuffer),
651 DataStream::DataStream(const Inode &inode)
652 : Inode(inode),
925 File::File(const Inode &inode)
948 File::CopyTo(const char *root, bool fullPath, Inode::Source *source)
950 status_t status = Inode::CopyTo(root, fullPath, source);
1002 Attribute::Attribute(const Inode &inode)
1026 Inode::Source */*source*/)
1047 Directory::Directory(const Inode &inode)
1072 Directory::CopyTo(const char *root, bool fullPath, Inode::Source *source)
1079 status_t status = Inode::CopyTo(root, fullPath, source);
1181 Directory::Contains(const Inode *inode)
1235 Directory::AddEntry(Inode *inode)
1313 : Inode(disk,inode,ownBuffer)
1318 Symlink::Symlink(const Inode &inode)
1319 : Inode(inode)
1332 status_t status = Inode::InitCheck();
1341 Symlink::CopyTo(const char *root, bool fullPath,Inode::Source *source)
1343 status_t status = Inode::CopyTo(root,fullPath,source);