common/tools/ats/smoketest/email/testutils/inc/t_testinstrumentation.h
changeset 719 d5603c08781b
child 872 17498133d9ad
equal deleted inserted replaced
718:b18be44be852 719:d5603c08781b
       
     1 /*
       
     2 * Copyright (c) 2007-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 the License "Symbian Foundation License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 * @file t_testInstrumentation.h
       
    16 * This contains the list of event codes that are used to identify a particular event.
       
    17 * These event codes are used by the EvenlogServer to generate a specif type of log for a specific event.
       
    18 * 
       
    19 *
       
    20 */
       
    21 
       
    22 
       
    23 
       
    24 
       
    25 
       
    26 
       
    27 #ifndef __TEST_INSTRUMENTATION_H__
       
    28 #define __TEST_INSTRUMENTATION_H__
       
    29 
       
    30 //	Epoc Include
       
    31 #include <e32base.h>
       
    32 
       
    33 /** 
       
    34 List of event codes.
       
    35 */
       
    36 	enum TInstrumentationPoint
       
    37 		{
       
    38 		// Event codes 0 to 20 has been reserved for error/specific condition
       
    39 		EBadEventCode			= 0,
       
    40 		EImapRamUsageStart		= 21,
       
    41 		EImapRamUsageStop,
       
    42 		EPopRamUsageStart		= 23,
       
    43 		EPopRamUsageStop,
       
    44 		ESmtpRamUsageStart		= 25,
       
    45 		ESmtpRamUsageStop,
       
    46 		ESmtpRamUsageCreateMessageStart = 27,
       
    47 		ESmtpRamUsageCreateMessageStop,
       
    48 		ESmtpRamUsageSendMessageStart	= 29,
       
    49 		ESmtpRamUsageSendMessageStop,
       
    50 		ESmtpCreateMessageSpeedStart	= 31,
       
    51 		ESmtpCreateMessageSpeedStop,
       
    52 		ESmtpSendMessageSpeedStart		= 33,
       
    53 		ESmtpSendMessageSpeedStop,
       
    54 		EImapDownloadMessageSpeedStart	= 35,
       
    55 		EImapDownloadMessageSpeedStop
       
    56 		};
       
    57 
       
    58 
       
    59 #endif /* __TEST_INSTRUMENTATION_H__ */