diff -r 000000000000 -r bde4ae8d615e os/persistentdata/persistentstorage/store/USTRM/US_STD.INL --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/os/persistentdata/persistentstorage/store/USTRM/US_STD.INL Fri Jun 15 03:10:57 2012 +0200 @@ -0,0 +1,83 @@ +// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// + +inline TSourceOutput::TSourceOutput(MStreamBuf* aSource) + : iSrc(aSource) + { + __ASSERT_DEBUG(aSource!=NULL,Panic(EStreamNotOpen)); + } + +inline TFilterInput::TFilterInput(TStreamFilter& aFilter,TAny* aPtr,TInt aMaxLength) + : iFltr(&aFilter),iPtr((TUint8*)aPtr),iLeft(aMaxLength) + {} +inline TBool TFilterInput::Done() const + {return iLeft==0;} +inline TBool TFilterInput::Eof() const + {return iPtr==NULL;} +inline TInt TFilterInput::Left() const + {return iLeft;} + +inline TFilterOutput::TFilterOutput(TStreamFilter& aFilter,const TAny* aPtr,TInt aLength) + : iFltr(&aFilter),iFrom((TUint8*)aPtr),iEnd((TUint8*)aPtr+aLength) + {} +inline TBool TFilterOutput::Done() const + {return iFrom==iEnd;} + +inline TUint8* TDelimitedInput8::Ptr() const + {return iPtr;} +inline TInt TDelimitedInput8::Done() const + {return iLeft==0;} + +inline TUint16* TDelimitedInput16::Ptr() const + {return iPtr;} +inline TInt TDelimitedInput16::Done() const + {return iLeft==0;} + +inline TBool TStreamMark::IsTracking(TStreamMark*const& __DEBUG(aRef)) const + { +#if defined (_DEBUG) + return iPos==KStreamBeginning-1-(TUint(&aRef)>>2); +#else + return IsEmpty(); +#endif + } +inline void TStreamMark::Track(TStreamMark*const& __DEBUG(aRef)) + { +#if defined (_DEBUG) + iPos=KStreamBeginning-1-(TUint(&aRef)>>2); + __ASSERT_DEBUG(iPos