sl@0: // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: // Class TPermanentStoreHeader sl@0: inline TUint8* TPermanentStoreHeader::Ptr() sl@0: {return REINTERPRET_CAST(TUint8*,&iBackup);} sl@0: inline const TUint8* TPermanentStoreHeader::Ptr() const sl@0: {return REINTERPRET_CAST(const TUint8*,&iBackup);} sl@0: inline TPermanentStoreHeader::TPermanentStoreHeader(TInt aToc) sl@0: {Set(aToc,0,aToc);} sl@0: inline TPermanentStoreHeader::TPermanentStoreHeader(TInt aBackupToc,TInt aHandle,TInt aReference) sl@0: { sl@0: __ASSERT_DEBUG(aHandle!=0,User::Invariant()); sl@0: Set(aBackupToc,aHandle,aReference); sl@0: } sl@0: inline TBool TPermanentStoreHeader::IsDirty() const sl@0: {return iBackup&0x1;} sl@0: inline void TPermanentStoreHeader::MarkDirty() sl@0: {iBackup|=0x1;} sl@0: inline void TPermanentStoreHeader::SetBackupToc(TInt aBackupToc) sl@0: { sl@0: __ASSERT_DEBUG(aBackupToc>=0,User::Invariant()); sl@0: iBackup=TUint32(aBackupToc)<<1; sl@0: } sl@0: inline TInt TPermanentStoreHeader::BackupToc() const sl@0: {return iBackup>>1;} sl@0: inline TInt TPermanentStoreHeader::Handle() const sl@0: {return iHandle;} sl@0: inline TInt TPermanentStoreHeader::Reference() const sl@0: {return iRef;} sl@0: sl@0: // Class CPermanentStoreToc sl@0: inline TInt CPermanentStoreToc::Extent() const sl@0: {return iExt;} sl@0: inline TBool CPermanentStoreToc::IsVirtual() const sl@0: {return iPrimary<0;} sl@0: inline TInt CPermanentStoreToc::Primary() const sl@0: {return iPrimary&KMaskStreamIdValue;} sl@0: inline void CPermanentStoreToc::Changed() sl@0: {iPrimary|=KHandleInvalid;} sl@0: inline TStreamPos CPermanentStoreToc::Base() const sl@0: {return iBase;} sl@0: inline TStreamExchange& CPermanentStoreToc::Host() const sl@0: { sl@0: __ASSERT_DEBUG(iHost!=NULL,User::Invariant()); sl@0: return *iHost; sl@0: } sl@0: inline const CPermanentStoreToc::TEntry* CPermanentStoreToc::Entry(TInt aHandle) const sl@0: {return CONST_CAST(CPermanentStoreToc*,this)->Entry(aHandle);} sl@0: inline TBool CPermanentStoreToc::HasDelta() const sl@0: {return iOff!=iTocOff;} sl@0: sl@0: // Class RPermanentStoreTocIter sl@0: inline void RPermanentStoreTocIter::Close() sl@0: {Release();} sl@0: sl@0: // Class TPermanentStoreCache sl@0: inline TPermanentStoreCache::TPermanentStoreCache() sl@0: {Invalidate();} sl@0: sl@0: // Class CPermanentStoreCoord sl@0: inline TBool CPermanentStoreCoord::IsTrim() const sl@0: {return !(iState&EClip);} sl@0: inline void CPermanentStoreCoord::Clipped() sl@0: {iState&=~EClip;} sl@0: inline TStreamPos CPermanentStoreCoord::Base() const sl@0: {return iBase;} sl@0: inline TStreamExchange& CPermanentStoreCoord::Host() const sl@0: { sl@0: __ASSERT_DEBUG(iHost!=NULL,User::Invariant()); sl@0: return *iHost; sl@0: } sl@0: inline TInt CPermanentStoreCoord::Toc() const sl@0: {return iToc;} sl@0: inline CPermanentStoreToc& CPermanentStoreCoord::Table() const sl@0: { sl@0: __ASSERT_DEBUG(iTable!=NULL,User::Invariant()); sl@0: return *iTable; sl@0: } sl@0: inline TUint CPermanentStoreCoord::Generation() const sl@0: {return iGen;} sl@0: inline void CPermanentStoreCoord::Inc() sl@0: {++iRefs;} sl@0: inline void CPermanentStoreCoord::Dec() sl@0: {--iRefs;} sl@0: inline TBool CPermanentStoreCoord::Accessed() const sl@0: {return iAccess;} sl@0: sl@0: // Class HPermanentStoreBuf sl@0: inline HPermanentStoreBuf::HPermanentStoreBuf(CPermanentStoreCoord& aCoord) sl@0: : RFrame16Buf(aCoord.Base()),iCoord(&aCoord),iHandle(0) sl@0: {} sl@0: inline CPermanentStoreCoord& HPermanentStoreBuf::Coord() const sl@0: { sl@0: __ASSERT_DEBUG(iCoord!=NULL,User::Invariant()); sl@0: return *iCoord; sl@0: } sl@0: sl@0: // Class CPermanentStoreCollector sl@0: inline CPermanentStoreCoord& CPermanentStoreCollector::Coord() const sl@0: { sl@0: __ASSERT_DEBUG(iCoord!=NULL,User::Invariant()); sl@0: return *iCoord; sl@0: } sl@0: inline TStreamExchange& CPermanentStoreCollector::Host() const sl@0: { sl@0: __ASSERT_DEBUG(iHost!=NULL,User::Invariant()); sl@0: return *iHost; sl@0: } sl@0: inline TBool CPermanentStoreCollector::Compacting() const sl@0: {return iReloc!=NULL;} sl@0: