os/persistentdata/persistentstorage/store/INC/S32PAGE.INL
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
// Class TPageRef
sl@0
    17
inline TPageRef::TPageRef(TUint32 aValue)
sl@0
    18
	: iVal(aValue)
sl@0
    19
/** Constructor that initialises the object to a page reference value.
sl@0
    20
sl@0
    21
@param aValue Page reference value */
sl@0
    22
	{}
sl@0
    23
inline TBool TPageRef::operator==(TPageRef aRef) const
sl@0
    24
/** Equality operator.
sl@0
    25
sl@0
    26
@param aRef Page reference against which to compare
sl@0
    27
@return True if aRef refers to the same page as the object, otherwise false. */
sl@0
    28
	{return iVal==aRef.iVal;}
sl@0
    29
inline TBool TPageRef::operator!=(TPageRef aRef) const
sl@0
    30
/** Inequality operator.
sl@0
    31
sl@0
    32
@param aRef Page reference against which to compare
sl@0
    33
@return True if aRef does not refer to the same page as the object, otherwise 
sl@0
    34
false. */
sl@0
    35
	{return iVal!=aRef.iVal;}
sl@0
    36
inline void TPageRef::ExternalizeL(RWriteStream& aStream) const
sl@0
    37
/** Externalises a TPageRef object to a write stream.
sl@0
    38
sl@0
    39
@param aStream Stream to which the object should be externalised. */
sl@0
    40
	{aStream<<iVal;}
sl@0
    41
inline void TPageRef::InternalizeL(RReadStream& aStream)
sl@0
    42
/** Internalises a TPageRef object from a read stream.
sl@0
    43
sl@0
    44
@param aStream Stream from which the object should be internalised. */
sl@0
    45
	{aStream>>iVal;}
sl@0
    46
inline TUint32 TPageRef::Value() const
sl@0
    47
/** Gets the page reference value.
sl@0
    48
sl@0
    49
@return Page reference value */
sl@0
    50
	{return iVal;}
sl@0
    51
sl@0
    52
// Class MPagePool
sl@0
    53
inline void MPagePool::Pop()
sl@0
    54
/** Do a pop from the cleanup stack. */
sl@0
    55
	{CleanupStack::Pop();}
sl@0
    56
sl@0
    57
// Class CPageCache::TStats
sl@0
    58
#if defined(__PAGE_CACHE_STATS)
sl@0
    59
inline TInt CPageCache::TStats::Requests() const
sl@0
    60
	{return iRequests;}
sl@0
    61
inline TInt CPageCache::TStats::Hits() const
sl@0
    62
	{return iRequests-iMisses;}
sl@0
    63
inline TInt CPageCache::TStats::Misses() const
sl@0
    64
	{return iMisses;}
sl@0
    65
inline void CPageCache::TStats::Reset()
sl@0
    66
	{iRequests=0;iMisses=0;}
sl@0
    67
#endif
sl@0
    68
sl@0
    69
// Class CPageCache
sl@0
    70
#if defined(__PAGE_CACHE_STATS)
sl@0
    71
inline CPageCache::TStats& CPageCache::Stats()
sl@0
    72
	{return iStats;}
sl@0
    73
inline const CPageCache::TStats& CPageCache::Stats() const
sl@0
    74
	{return iStats;}
sl@0
    75
#endif
sl@0
    76
sl@0
    77
// Class TCachePagePool
sl@0
    78
inline void TCachePagePool::Set(CPageCache& aCache)
sl@0
    79
/** Sets the page cache for the pool.
sl@0
    80
sl@0
    81
@param aCache The page cache for the pool. */
sl@0
    82
	{iCache=&aCache;}
sl@0
    83
inline TCachePagePool::TCachePagePool()
sl@0
    84
	: iCache(NULL)
sl@0
    85
	{}
sl@0
    86
inline TCachePagePool::TCachePagePool(CPageCache& aCache)
sl@0
    87
	: iCache(&aCache)
sl@0
    88
	{}
sl@0
    89