os/persistentdata/featuremgmt/featuremgr/src/clientdll/featmgrresourcetester.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <e32std.h>
    17 #include "featmgrtlsdata.h"
    18 #include "featmgrresourcetester.h"
    19 
    20 #define UNUSED_ARG(arg) arg = arg
    21 
    22 //Defined in featurecontrol.cpp
    23 extern CFeatMgrTlsData* TlsData();
    24 
    25 #pragma BullseyeCoverage off
    26 
    27 /** 
    28 */
    29 EXPORT_C void TFeatMgrResourceTester::Mark()
    30     {
    31 #ifdef EXTENDED_FEATURE_MANAGER_TEST
    32     CFeatMgrTlsData* tlsData = ::TlsData();
    33     tlsData->ResourceMark();
    34 #endif    
    35     }
    36 
    37 /** 
    38 */
    39 EXPORT_C void TFeatMgrResourceTester::Check()
    40     {
    41 #ifdef EXTENDED_FEATURE_MANAGER_TEST
    42     CFeatMgrTlsData* tlsData = ::TlsData();
    43     tlsData->ResourceCheck();
    44 #endif    
    45     }
    46 
    47 /** 
    48 */
    49 EXPORT_C TInt TFeatMgrResourceTester::Count()
    50     {
    51 #ifdef EXTENDED_FEATURE_MANAGER_TEST
    52     CFeatMgrTlsData* tlsData = ::TlsData();
    53     return tlsData->ResourceCount();
    54 #else
    55     return -1;
    56 #endif    
    57     }
    58 
    59 /** 
    60 */
    61 EXPORT_C void TFeatMgrResourceTester::SetHeapFailure(TInt aAllocFailType, TInt aRate)
    62     {
    63 #ifdef EXTENDED_FEATURE_MANAGER_TEST
    64     CFeatMgrTlsData* tlsData = ::TlsData();
    65     return tlsData->SetHeapFailure(aAllocFailType, aRate);
    66 #else    
    67     UNUSED_ARG(aAllocFailType);
    68     UNUSED_ARG(aRate);
    69 #endif    
    70     }
    71 
    72 #pragma BullseyeCoverage on