Update contrib.
1 // Copyright (c) 2007-2010 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.
17 #include "featmgrtlsdata.h"
18 #include "featmgrresourcetester.h"
20 #define UNUSED_ARG(arg) arg = arg
22 //Defined in featurecontrol.cpp
23 extern CFeatMgrTlsData* TlsData();
25 #pragma BullseyeCoverage off
29 EXPORT_C void TFeatMgrResourceTester::Mark()
31 #ifdef EXTENDED_FEATURE_MANAGER_TEST
32 CFeatMgrTlsData* tlsData = ::TlsData();
33 tlsData->ResourceMark();
39 EXPORT_C void TFeatMgrResourceTester::Check()
41 #ifdef EXTENDED_FEATURE_MANAGER_TEST
42 CFeatMgrTlsData* tlsData = ::TlsData();
43 tlsData->ResourceCheck();
49 EXPORT_C TInt TFeatMgrResourceTester::Count()
51 #ifdef EXTENDED_FEATURE_MANAGER_TEST
52 CFeatMgrTlsData* tlsData = ::TlsData();
53 return tlsData->ResourceCount();
61 EXPORT_C void TFeatMgrResourceTester::SetHeapFailure(TInt aAllocFailType, TInt aRate)
63 #ifdef EXTENDED_FEATURE_MANAGER_TEST
64 CFeatMgrTlsData* tlsData = ::TlsData();
65 return tlsData->SetHeapFailure(aAllocFailType, aRate);
67 UNUSED_ARG(aAllocFailType);
72 #pragma BullseyeCoverage on