Update contrib.
1 // Copyright (c) 2006-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 // // RSqlBufFlat class //
20 @return Flat buffer elements count
22 inline TInt RSqlBufFlat::Count() const
24 SQLFLATBUF_INVARIANT();
29 @return Flat buffer size (this is not the max size. It refers only to the used part of the flat buffer)
31 inline TInt RSqlBufFlat::Size() const
33 SQLFLATBUF_INVARIANT();
38 @return Flat buffer max size
40 inline TInt RSqlBufFlat::MaxSize() const
42 SQLFLATBUF_INVARIANT();
47 @return A pointer to the beginning of the flat buffer header
49 inline RSqlBufFlat::TCell* RSqlBufFlat::Header()
51 return reinterpret_cast <RSqlBufFlat::TCell*> (iBuf + 1);
55 @return A const pointer to the beginning of the flat buffer header
57 inline const RSqlBufFlat::TCell* RSqlBufFlat::Header() const
59 return reinterpret_cast <const RSqlBufFlat::TCell*> (iBuf + 1);
63 @return The avaliable space in the flat buffer
65 inline TInt RSqlBufFlat::Available() const
67 return iMaxSize - iBuf->iSize;
71 This function returns a const reference to a descriptor object pointing to the internal buffer.
72 BufDes() guarantees to return a const descriptor, whose lifetime is the same as the flat buffer lifetime.
73 (useful when making asynchronous IPC calls)
75 @return A reference to a descriptor object pointing to the internal buffer.
77 inline const TDesC8& RSqlBufFlat::BufDes() const
79 SQLFLATBUF_INVARIANT();
80 iBufPtrC.Set(reinterpret_cast <const TUint8*> (iBuf), iBuf->iSize);
85 This function returns a modifiable reference to a descriptor object pointing to the internal buffer.
86 BufPtr() guarantees to return a modifiable descriptor, whose lifetime is the same as the flat buffer lifetime.
87 (useful when making asynchronous IPC calls)
89 @return A reference to a modifiable descriptor object pointing to the internal buffer.
91 inline TPtr8& RSqlBufFlat::BufPtr()
93 SQLFLATBUF_INVARIANT();
94 iBufPtr.Set(reinterpret_cast <TUint8*> (iBuf), iBuf->iSize, iMaxSize);
99 @return The minimal allowed buffer size: sizeof(TBufFlat) + size of the header
101 inline TInt RSqlBufFlat::SysDataSize() const
103 return iBuf->iHeaderSize + sizeof(RSqlBufFlat::TBufFlat);