Update contrib.
1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 // Class TPermanentStoreHeader
17 inline TUint8* TPermanentStoreHeader::Ptr()
18 {return REINTERPRET_CAST(TUint8*,&iBackup);}
19 inline const TUint8* TPermanentStoreHeader::Ptr() const
20 {return REINTERPRET_CAST(const TUint8*,&iBackup);}
21 inline TPermanentStoreHeader::TPermanentStoreHeader(TInt aToc)
23 inline TPermanentStoreHeader::TPermanentStoreHeader(TInt aBackupToc,TInt aHandle,TInt aReference)
25 __ASSERT_DEBUG(aHandle!=0,User::Invariant());
26 Set(aBackupToc,aHandle,aReference);
28 inline TBool TPermanentStoreHeader::IsDirty() const
30 inline void TPermanentStoreHeader::MarkDirty()
32 inline void TPermanentStoreHeader::SetBackupToc(TInt aBackupToc)
34 __ASSERT_DEBUG(aBackupToc>=0,User::Invariant());
35 iBackup=TUint32(aBackupToc)<<1;
37 inline TInt TPermanentStoreHeader::BackupToc() const
39 inline TInt TPermanentStoreHeader::Handle() const
41 inline TInt TPermanentStoreHeader::Reference() const
44 // Class CPermanentStoreToc
45 inline TInt CPermanentStoreToc::Extent() const
47 inline TBool CPermanentStoreToc::IsVirtual() const
49 inline TInt CPermanentStoreToc::Primary() const
50 {return iPrimary&KMaskStreamIdValue;}
51 inline void CPermanentStoreToc::Changed()
52 {iPrimary|=KHandleInvalid;}
53 inline TStreamPos CPermanentStoreToc::Base() const
55 inline TStreamExchange& CPermanentStoreToc::Host() const
57 __ASSERT_DEBUG(iHost!=NULL,User::Invariant());
60 inline const CPermanentStoreToc::TEntry* CPermanentStoreToc::Entry(TInt aHandle) const
61 {return CONST_CAST(CPermanentStoreToc*,this)->Entry(aHandle);}
62 inline TBool CPermanentStoreToc::HasDelta() const
63 {return iOff!=iTocOff;}
65 // Class RPermanentStoreTocIter
66 inline void RPermanentStoreTocIter::Close()
69 // Class TPermanentStoreCache
70 inline TPermanentStoreCache::TPermanentStoreCache()
73 // Class CPermanentStoreCoord
74 inline TBool CPermanentStoreCoord::IsTrim() const
75 {return !(iState&EClip);}
76 inline void CPermanentStoreCoord::Clipped()
78 inline TStreamPos CPermanentStoreCoord::Base() const
80 inline TStreamExchange& CPermanentStoreCoord::Host() const
82 __ASSERT_DEBUG(iHost!=NULL,User::Invariant());
85 inline TInt CPermanentStoreCoord::Toc() const
87 inline CPermanentStoreToc& CPermanentStoreCoord::Table() const
89 __ASSERT_DEBUG(iTable!=NULL,User::Invariant());
92 inline TUint CPermanentStoreCoord::Generation() const
94 inline void CPermanentStoreCoord::Inc()
96 inline void CPermanentStoreCoord::Dec()
98 inline TBool CPermanentStoreCoord::Accessed() const
101 // Class HPermanentStoreBuf
102 inline HPermanentStoreBuf::HPermanentStoreBuf(CPermanentStoreCoord& aCoord)
103 : RFrame16Buf(aCoord.Base()),iCoord(&aCoord),iHandle(0)
105 inline CPermanentStoreCoord& HPermanentStoreBuf::Coord() const
107 __ASSERT_DEBUG(iCoord!=NULL,User::Invariant());
111 // Class CPermanentStoreCollector
112 inline CPermanentStoreCoord& CPermanentStoreCollector::Coord() const
114 __ASSERT_DEBUG(iCoord!=NULL,User::Invariant());
117 inline TStreamExchange& CPermanentStoreCollector::Host() const
119 __ASSERT_DEBUG(iHost!=NULL,User::Invariant());
122 inline TBool CPermanentStoreCollector::Compacting() const
123 {return iReloc!=NULL;}