Update contrib.
1 // Copyright (c) 2005-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.
14 // Sets the read position.
18 inline void HIpcBuf::SetPos(TRead, TInt aPos)
24 Sets the write position.
26 inline void HIpcBuf::SetPos(TWrite, TInt aPos)
34 inline TInt HIpcBuf::Pos(TRead) const
40 @return Write position
42 inline TInt HIpcBuf::Pos(TWrite) const
48 Moves the read position.
50 inline TInt HIpcBuf::MovePos(TRead, TInt aOffset)
52 return iRPos += aOffset;
56 @return The difference between read and write positions.
58 inline TInt HIpcBuf::Lag(TRead) const
60 return Ptr(ERead) - End(ERead);
64 @return The difference between the write position and the beginning of the buffer.
66 inline TInt HIpcBuf::Lag(TWrite) const
68 return Ptr(EWrite) - iBuf.iData;
71 inline TInt HIpcBuf::Mark(TRead) const
73 return Pos(ERead) + Lag(ERead);
76 inline TInt HIpcBuf::Mark(TWrite) const
78 return Pos(EWrite) + Lag(EWrite);