2 * Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
26 #ifndef _A3F_TRACE_CTXT_H_
27 #define _A3F_TRACE_CTXT_H_
30 //#define DISABLE_SYNTAX_CHECK
31 #define DISABLE_GROUP_CHECKS
38 const TText16* const iName;
40 const wchar_t* const iName;
48 This is TTraceCtxGroup
74 static const TTraceName TRACENFO[] =
76 { CtxTest, 0x00000001, L"Test" },
77 { CtxDevSound, 0x00000002, L"DevSound" },
78 { CtxDsProxy, 0x00000004, L"DevSound proxy" },
79 { CtxDsStarter, 0x00000008, L"DevSound starter" },
80 { CtxDsServer, 0x00000010, L"DevSound server" },
81 { CtxDsdaptation, 0x00000020, L"DevSound adaptation" },
82 { CtxHwDevice, 0x00000040, L"HW device" },
83 { CtxPolicyProxy, 0x00000080, L"Policy proxy" },
84 { CtxPolicyServer, 0x00000100, L"Policy server" },
85 { CtxPolicyCtrl, 0x00000200, L"Policy control" },
86 { CtxMmRm, 0x00000400, L"Mm resource manager" },
87 { CtxAudioServer, 0x00000800, L"Audio server" },
88 { CtxAsProxy, 0x00001000, L"Audio server proxy" },
89 { CtxAsServer, 0x00002000, L"Audio server server" },
90 { CtxAsCtrl, 0x00004000, L"Audio server control" },
91 { CtxAsEap, 0x00008000, L"Audio server EAP" },
92 { CtxMdaif, 0x00010000, L"MDAIF" },
93 { CtxAaMm, 0x00020000, L"Message mapper" },
94 { CtxRadio, 0x00040000, L"Radio" }
97 #define CtxDefaultGroups _CtxDefaultGroups()
100 inline TInt _CtxDefaultGroups()
102 return TRACENFO[CtxTest].iGrpId |
103 TRACENFO[CtxDevSound].iGrpId |
104 TRACENFO[CtxDsProxy].iGrpId |
105 TRACENFO[CtxDsStarter].iGrpId |
106 TRACENFO[CtxDsServer].iGrpId |
107 TRACENFO[CtxDsdaptation].iGrpId |
108 TRACENFO[CtxHwDevice].iGrpId |
109 TRACENFO[CtxPolicyProxy].iGrpId |
110 TRACENFO[CtxPolicyServer].iGrpId |
111 TRACENFO[CtxPolicyCtrl].iGrpId |
112 TRACENFO[CtxMmRm].iGrpId |
113 TRACENFO[CtxAudioServer].iGrpId |
114 TRACENFO[CtxAsProxy].iGrpId |
115 TRACENFO[CtxAsServer].iGrpId |
116 TRACENFO[CtxAsCtrl].iGrpId |
117 TRACENFO[CtxAsEap].iGrpId |
118 TRACENFO[CtxMdaif].iGrpId |
119 TRACENFO[CtxAaMm].iGrpId |
120 TRACENFO[CtxRadio].iGrpId;
123 #endif // _A3F_TRACE_CTXT_H_