diff -r 07b41fa8d1dd -r ca8a1b6995f6 memspy/MemSpyClient/inc/memspyheapdata.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/memspy/MemSpyClient/inc/memspyheapdata.h Tue Aug 31 16:45:49 2010 +0300 @@ -0,0 +1,64 @@ +/* +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* Contains the declaration of TMemSpyProcessData class +*/ + +#ifndef MEMSPYHEAPDATA_H +#define MEMSPYHEAPDATA_H + +#include + +// Constants +const TInt KBuf = 16; + +// TMemSpyProcess data class holds data to be sent to the UI +class TMemSpyHeapData + { +public: + //constructor & destructor + inline TMemSpyHeapData() + : iSize(0), iBaseAddress(0), iShared(EFalse), iChunkSize(0), + iAllocationsCount(0), iFreeCount(0), iBiggestAllocation(0), iBiggestFree(0), iTotalAllocations(0), + iTotalFree(0), iSlackFreeSpace(0), iFragmentation(0), iHeaderSizeA(0), iHeaderSizeF(0), iAllocationOverhead(0), + iFreeOverhead(0), iTotalOverhead(0), iOverhead(0), iMinLength(0), iMaxLength(0), iDebugAllocatorLibrary(EFalse) + { + } + +public: + TBuf iType; + TUint iSize; + TLinAddr iBaseAddress; + TBool iShared; + TUint iChunkSize; + TUint iAllocationsCount; + TUint iFreeCount; + TUint iBiggestAllocation; + TUint iBiggestFree; + TUint iTotalAllocations; + TUint iTotalFree; + TUint iSlackFreeSpace; + TReal iFragmentation; + TUint iHeaderSizeA; + TUint iHeaderSizeF; + TUint iAllocationOverhead; + TUint iFreeOverhead; + TUint iTotalOverhead; + TReal iOverhead; + TInt iMinLength; + TInt iMaxLength; + TBool iDebugAllocatorLibrary; + }; + +#endif // MEMSPYHEAPDATA_H