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 |
inline TUint8* TMemBuf::Base() const
|
sl@0
|
17 |
{
|
sl@0
|
18 |
__ASSERT_DEBUG(iBase!=NULL,User::Invariant());
|
sl@0
|
19 |
return iBase;
|
sl@0
|
20 |
}
|
sl@0
|
21 |
inline TUint8* TMemBuf::End() const
|
sl@0
|
22 |
{
|
sl@0
|
23 |
__ASSERT_DEBUG(TStreamBuf::End(ERead)==TStreamBuf::End(EWrite),User::Invariant());
|
sl@0
|
24 |
return TStreamBuf::End(EWrite);
|
sl@0
|
25 |
}
|
sl@0
|
26 |
|
sl@0
|
27 |
inline TDes8& TDesBuf::Des() const
|
sl@0
|
28 |
{
|
sl@0
|
29 |
__ASSERT_DEBUG(iDes!=NULL,User::Invariant());
|
sl@0
|
30 |
return *iDes;
|
sl@0
|
31 |
}
|
sl@0
|
32 |
inline TUint8* TDesBuf::Base() const
|
sl@0
|
33 |
{
|
sl@0
|
34 |
__ASSERT_DEBUG(Des().Ptr()!=NULL,User::Invariant());
|
sl@0
|
35 |
return (TUint8*)Des().Ptr();
|
sl@0
|
36 |
}
|
sl@0
|
37 |
|
sl@0
|
38 |
inline CBufBase& TBufBuf::Buf() const
|
sl@0
|
39 |
{
|
sl@0
|
40 |
__ASSERT_DEBUG(iBuf!=NULL,User::Invariant());
|
sl@0
|
41 |
return *iBuf;
|
sl@0
|
42 |
}
|
sl@0
|
43 |
inline void TBufBuf::SetPos(TRead,TInt aPos)
|
sl@0
|
44 |
{iRPos=aPos;}
|
sl@0
|
45 |
inline void TBufBuf::SetPos(TWrite,TInt aPos)
|
sl@0
|
46 |
{iWPos=aPos;}
|
sl@0
|
47 |
inline TInt TBufBuf::Pos(TRead) const
|
sl@0
|
48 |
{return iRPos;}
|
sl@0
|
49 |
inline TInt TBufBuf::Pos(TWrite) const
|
sl@0
|
50 |
{return iWPos;}
|
sl@0
|
51 |
inline TInt TBufBuf::MovePos(TRead,TInt anOffset)
|
sl@0
|
52 |
{return iRPos+=anOffset;}
|
sl@0
|
53 |
inline TInt TBufBuf::MovePos(TWrite,TInt anOffset)
|
sl@0
|
54 |
{return iWPos+=anOffset;}
|
sl@0
|
55 |
inline TInt TBufBuf::Mark(TRead) const
|
sl@0
|
56 |
{return Pos(ERead)-Avail(ERead);}
|
sl@0
|
57 |
inline TInt TBufBuf::Mark(TWrite) const
|
sl@0
|
58 |
{return Pos(EWrite)-Avail(EWrite);}
|
sl@0
|
59 |
|