Update contrib.
1 // Copyright (c) 2005-2010 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.
14 // //////////////////////// HIpcStream ///////////////////////////////////////
20 Initializes HIpcStream data members.
22 @param aHost A pointer to the buffer with the stream data
23 @param aReadPos The position data has to be read from
25 @see HIpcStream::SynchL()
27 @panic SqlDb 7 In _DEBUG mode. aHost is NULL.
29 inline HIpcStream::HIpcStream(MStreamBuf* aHost, TInt aReadPos):
34 __ASSERT_DEBUG(aHost != NULL, __SQLPANIC(ESqlPanicInternalError));
38 Relases the stream buffer.
40 inline HIpcStream::~HIpcStream()
46 @return The stream data size.
48 inline TInt HIpcStream::SizeL()
54 Synchronizes the stream data buffer with the stream.
56 @see HIpcStream::HIpcStream()
58 inline void HIpcStream::SynchL()
64 //////////////////////////////////////////////////////////////////////////////////////////////////////////
65 /////////////////////////// HIpcReadBuf //////////////////////////////////////
66 //////////////////////////////////////////////////////////////////////////////////////////////////////////
69 Initializes HIpcReadBuf data members.
71 @param aDes Points to the data which will be accessed via HIpcReadBuf instance.
73 inline HIpcReadBuf::HIpcReadBuf(const TDesC8& aDes)
75 TUint8* ptr = const_cast <TUint8*> (aDes.Ptr());
76 Set(ptr, ptr + aDes.Length(), MStreamBuf::ERead);
80 Creates an instance of HIpcReadBuf class.
82 @param aDes Points to the data which will be accessed via HIpcReadBuf instance.
84 @return A pointer to the created HIpcReadBuf instance.
86 @leave KErrNoMemory, an out of memory condition has occured;
88 inline HIpcReadBuf* HIpcReadBuf::NewL(const TDesC8& aDes)
90 return new (ELeave) HIpcReadBuf(aDes);