struct TChunkHeapCreateInfo |
This structure specifies the type and properties of the user heap to be created. It is passed as a parameter to the UserHeap::Create() method.
Public Member Functions | |
---|---|
TChunkHeapCreateInfo ( TInt , TInt ) | |
void | SetAlignment ( TInt ) |
IMPORT_C void | SetCreateChunk (const TDesC *) |
void | SetGrowBy ( TInt ) |
void | SetMode ( TUint ) |
void | SetOffset ( TInt ) |
void | SetPaging (const TChunkHeapPagingAtt ) |
void | SetSingleThread ( TBool ) |
IMPORT_C void | SetUseChunk (const RChunk ) |
Public Member Enumerations | |
---|---|
enum | TChunkHeapCreateVersions { EVersion0 , ESupportedVersions } |
enum | TChunkHeapPagingAtt { EUnspecified , EPaged , EUnpaged } |
Protected Attributes | |
---|---|
TInt | iAlign |
RChunk | iChunk |
TInt | iGrowBy |
TInt | iMaxLength |
TInt | iMinLength |
TUint | iMode |
TDesC * | iName |
TInt | iOffset |
TChunkHeapPagingAtt | iPaging |
TBool | iSingleThread |
TInt | iSpare |
TUint | iVersionNumber |
IMPORT_C | TChunkHeapCreateInfo | ( | TInt | aMinLength, |
TInt | aMaxLength | |||
) |
Constructor where minimum and maximum length of the heap can be defined. It defaults the chunk heap to be created to have use a new local chunk, to have a grow by value of KMinHeapGrowBy, to be unaligned, not to be single threaded and not to have any mode flags set.
void | SetAlignment | ( | TInt | aAlign | ) | [inline] |
Sets alignment of the cells of the chunk heap to be created.
This overrides any previous call to TChunkHeapCreateInfo::SetAlignment() for this TChunkHeapCreateInfo object.
TInt aAlign |
IMPORT_C void | SetCreateChunk | ( | const TDesC * | aName | ) |
Sets the chunk heap to create a new chunk with the specified name.
This overriddes any previous call to TChunkHeapCreateInfo::SetNewChunkHeap() or TChunkHeapCreateInfo::SetExistingChunkHeap() for this TChunkHeapCreateInfo object.
const TDesC * aName | The name to be given to the chunk heap to be created If NULL, the function constructs a local chunk to host the heap. If not NULL, a pointer to a descriptor containing the name to be assigned to the global chunk hosting the heap. |
void | SetGrowBy | ( | TInt | aGrowBy | ) | [inline] |
Sets the increments to the size of the host chunk. If the supplied value is less than KMinHeapGrowBy, it is discarded and the value KMinHeapGrowBy is used instead.
This overrides any previous call to TChunkHeapCreateInfo::SetGrowBy() for this TChunkHeapCreateInfo object.
TInt aGrowBy | The increment to the size of the host chunk. |
void | SetMode | ( | TUint | aMode | ) | [inline] |
Sets the mode flags of the chunk heap.
This overrides any previous call to TChunkHeapCreateInfo::SetMode() for this TChunkHeapCreateInfo object.
TUint aMode | The mode flags for the chunk heap to be created, this should be one or more of the values from TChunkHeapCreateMode. |
void | SetOffset | ( | TInt | aOffset | ) | [inline] |
Sets the offset from the base of the host chunk to the start of the heap.
This overrides any previous call to TChunkHeapCreateInfo::SetOffset() for this TChunkHeapCreateInfo object.
TInt aOffset | The offset in bytes. |
void | SetPaging | ( | const TChunkHeapPagingAtt | aPaging | ) | [inline] |
Sets the paging attribute of the chunk heap to be created.
This overrides any previous call to TChunkHeapCreateInfo::SetPaging() for this TChunkHeapCreateInfo object.
const TChunkHeapPagingAtt aPaging | The paging attribute for the chunk heap to be created. |
void | SetSingleThread | ( | TBool | aSingleThread | ) | [inline] |
Sets single thread property of the chunk heap.
This overrides any previous call to TChunkHeapCreateInfo::SetSingleThread() for this TChunkHeapCreateInfo object.
TBool aSingleThread | ETrue when the chunk heap is to be single threaded, EFalse otherwise. |
IMPORT_C void | SetUseChunk | ( | const RChunk | aChunk | ) |
Sets the chunk heap to be created to use the chunk specified.
This overriddes any previous call to TChunkHeapCreateInfo::SetNewChunkHeap() or TChunkHeapCreateInfo::SetExistingChunkHeap() for this TChunkHeapCreateInfo object.
const RChunk aChunk | A handle to the chunk to use for the heap. |
Currently supported version numbers
EVersion0 | |
ESupportedVersions |
Attributes that specify whether the chunk heap to be created is data paged or not.
EUnspecified |
The chunk heap will use the creating process's paging attributes. |
EPaged |
The chunk heap will be data paged. |
EUnpaged |
The chunk heap will not be data paged. |
TInt | iOffset | [protected] |
The offset from the base of the chunk to the start of the heap.
TChunkHeapPagingAtt | iPaging | [protected] |
The paging attributes of the chunk.
TUint | iVersionNumber | [protected] |
The version number of this TChunkHeapCreateInfo .
Copyright ©2010 Nokia Corporation and/or its subsidiary(-ies).
All rights
reserved. Unless otherwise stated, these materials are provided under the terms of the Eclipse Public License
v1.0.