Lines Matching defs:CNode
273 struct CNode struct
275 UInt16 Type;
276 UInt16 Mode;
277 UInt16 Uid;
278 UInt16 Gid;
279 UInt32 Frag;
280 UInt32 Offset;
288 UInt64 FileSize;
289 UInt64 StartBlock;
297 bool IsDir() const { return (Type == kType_DIR || Type == kType_DIR + 7); } in IsDir()
298 bool IsLink() const { return (Type == kType_LNK || Type == kType_LNK + 7); } in IsLink()
299 UInt64 GetSize() const { return IsDir() ? 0 : FileSize; } in GetSize()
301 bool ThereAreFrags() const { return Frag != kFrag_Empty; } in ThereAreFrags()
302 UInt64 GetNumBlocks(const CHeader &_h) const in GetNumBlocks()