os/mm/devsound/a3ftrace/inc/a3f_trace_heap.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:
    15 *
    16 */
    17 
    18 
    19 
    20 
    21 /**
    22  @file
    23  @internalTechnology 
    24 */
    25 
    26 #ifndef _A3F_TRACE_HEAP_H_
    27 #define _A3F_TRACE_HEAP_H_
    28 
    29 
    30 /**
    31 *  TraceHeap is a container holding the bitmask that defines active trace groups
    32 *  This class is used to hold the debug mask of the inspected process
    33 */
    34 class TraceHeap
    35     {
    36     public:
    37     	IMPORT_C static void    CreateL(const TUint aDefaultMask=0);
    38     	IMPORT_C static TUint32 TraceMask();
    39     	IMPORT_C static void	   SetTraceMask( const TUint32 aTraceMask );
    40     	IMPORT_C static TBool   IsMaskOn( const TUint32 aMask );
    41     	IMPORT_C static void	   SetLevel( const TUint32 aDbgLevel );
    42     	IMPORT_C static TBool   IsBelowLevel( const TUint32 aLevel );
    43     	IMPORT_C static TUint32 TraceLevel();
    44     	IMPORT_C static TBool   IsApiOnly();
    45     	IMPORT_C static void    SetApiOnly( const TBool aApiOnly);
    46     	
    47     private: 
    48     	static TUint32* 	iTraceMask;
    49     	static TUint32* 	iTraceLevel;
    50     	static TBool* 	    iApiOnly;
    51     	static RHeap* 		iTraceHeap;
    52     };
    53 
    54 #endif      // _A3F_TRACE_HEAP_H_
    55             
    56 // End of File