os/kernelhwsrv/userlibandfileserver/fileserver/inc/utraceefile.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
sl@0
     2
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
// All rights reserved.
sl@0
     4
// This component and the accompanying materials are made available
sl@0
     5
// under the terms of the License "Eclipse Public License v1.0"
sl@0
     6
// which accompanies this distribution, and is available
sl@0
     7
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
//
sl@0
     9
// Initial Contributors:
sl@0
    10
// Nokia Corporation - initial contribution.
sl@0
    11
//
sl@0
    12
// Contributors:
sl@0
    13
//
sl@0
    14
// Description:
sl@0
    15
// File Server tracing
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
/**
sl@0
    20
 @file
sl@0
    21
 @publishedPartner
sl@0
    22
 @prototype
sl@0
    23
*/
sl@0
    24
sl@0
    25
#ifndef UTRACEEFILE_H
sl@0
    26
#define UTRACEEFILE_H
sl@0
    27
sl@0
    28
sl@0
    29
#include <f32tracedef.h>
sl@0
    30
sl@0
    31
/**
sl@0
    32
This defines trace attributes to be used by file-system tracing
sl@0
    33
sl@0
    34
*/
sl@0
    35
namespace UTraceModuleFileSys
sl@0
    36
    {
sl@0
    37
sl@0
    38
	/** 
sl@0
    39
	@SYMTraceFormatCategory EF32TraceUidFileSys 
sl@0
    40
    @SYMTraceFormatId
sl@0
    41
    */
sl@0
    42
    enum TFormatId
sl@0
    43
        {
sl@0
    44
		EReserved = UTF::KInitialClientFormat-1,
sl@0
    45
sl@0
    46
        /** @SYMTraceFormatString "+CFileSystem::CFileSystem()" */
sl@0
    47
		ECFileSystemConstructor,
sl@0
    48
        /** @SYMTraceFormatString "-CFileSystem::CFileSystem()" */
sl@0
    49
        ECFileSystemConstructorReturn,
sl@0
    50
sl@0
    51
        /** @SYMTraceFormatString "+~CFileSystem::CFileSystem()" */
sl@0
    52
		ECFileSystemDestructor,
sl@0
    53
        /** @SYMTraceFormatString "-~CFileSystem::CFileSystem()" */
sl@0
    54
        ECFileSystemDestructorReturn,
sl@0
    55
sl@0
    56
        /** @SYMTraceFormatString "+CFileSystem::New() handle %x" */
sl@0
    57
		ECFileSystemNew,
sl@0
    58
        /** @SYMTraceFormatString "-CFileSystem::New() fileSystem %x" */
sl@0
    59
        ECFileSystemNewRet,
sl@0
    60
sl@0
    61
        /** @SYMTraceFormatString "+CFileSystem::Remove() this %x" */
sl@0
    62
		ECFileSystemRemove,
sl@0
    63
        /** @SYMTraceFormatString "-CFileSystem::Remove()" */
sl@0
    64
        ECFileSystemRemoveRet,
sl@0
    65
sl@0
    66
        /** @SYMTraceFormatString "CFileSystem::IsExtensionSupported() this %x r %d" */
sl@0
    67
		ECFileSystemIsExtensionSupported,
sl@0
    68
sl@0
    69
		/** @SYMTraceFormatString "+CFileSystem::Install() this %x" */
sl@0
    70
		ECFileSystemInstall,
sl@0
    71
        /** @SYMTraceFormatString "-CFileSystem::Install() r %d Name %*S" */
sl@0
    72
        ECFileSystemInstallRet,
sl@0
    73
sl@0
    74
		/** @SYMTraceFormatString "+CFileSystem::NewMountL() this %x drive %d" */
sl@0
    75
		ECFileSystemNewMountL,
sl@0
    76
        /** @SYMTraceFormatString "-CFileSystem::NewMountL() r %d CMountCB %x" */
sl@0
    77
        ECFileSystemNewMountLRet,
sl@0
    78
sl@0
    79
		/** @SYMTraceFormatString "+CFileSystem::NewFileL() this %x drive %d" */
sl@0
    80
		ECFileSystemNewFileL,
sl@0
    81
        /** @SYMTraceFormatString "-CFileSystem::NewFileL() r %d CFileCB %x" */
sl@0
    82
        ECFileSystemNewFileLRet,
sl@0
    83
sl@0
    84
		/** @SYMTraceFormatString "+CFileSystem::NewDirL() this %x drive %d" */
sl@0
    85
		ECFileSystemNewDirL,
sl@0
    86
        /** @SYMTraceFormatString "-CFileSystem::NewDirL() r %d CDirCB %x" */
sl@0
    87
        ECFileSystemNewDirLRet,
sl@0
    88
sl@0
    89
		/** @SYMTraceFormatString "+CFileSystem::NewFormatL() this %x drive %d" */
sl@0
    90
		ECFileSystemNewFormatL,
sl@0
    91
        /** @SYMTraceFormatString "-CFileSystem::NewFormatL() r %d CFormatCB %x" */
sl@0
    92
        ECFileSystemNewFormatLRet,
sl@0
    93
sl@0
    94
		/** @SYMTraceFormatString "+CFileSystem::DriveInfo() this %x aDriveNumber %d" */
sl@0
    95
		ECFileSystemDriveInfo,
sl@0
    96
        /** @SYMTraceFormatString "-CFileSystem::DriveInfo() type %d driveAtt %x mediaAtt %x" */
sl@0
    97
        ECFileSystemDriveInfoRet,
sl@0
    98
sl@0
    99
sl@0
   100
        
sl@0
   101
		/** @SYMTraceFormatString "+CMountCB::ReMount() drive %d" */
sl@0
   102
		ECMountCBReMount,
sl@0
   103
        /** @SYMTraceFormatString "-CMountCB::ReMount() success %d" */
sl@0
   104
        ECMountCBReMountRet,
sl@0
   105
sl@0
   106
		/** @SYMTraceFormatString "+CMountCB::Dismounted() drive %d" */
sl@0
   107
		ECMountCBDismounted,
sl@0
   108
        /** @SYMTraceFormatString "-CMountCB::Dismounted()" */
sl@0
   109
        ECMountCBDismountedRet,
sl@0
   110
sl@0
   111
sl@0
   112
		/** @SYMTraceFormatString "+CMountCB::VolumeL() drive %d" */
sl@0
   113
		ECMountCBVolumeL,
sl@0
   114
        /** @SYMTraceFormatString "-CMountCB::VolumeL() r %d iUniqueID %x iSize %ld iFree %ld iFileCacheFlags %x" */
sl@0
   115
        ECMountCBVolumeLRet,
sl@0
   116
sl@0
   117
		/** @SYMTraceFormatString "+CMountCB::SetVolumeL() drive %d aName %*S" */
sl@0
   118
		ECMountCBSetVolumeL,
sl@0
   119
        /** @SYMTraceFormatString "-CMountCB::SetVolumeL() r %d" */
sl@0
   120
        ECMountCBSetVolumeLRet,
sl@0
   121
sl@0
   122
		/** @SYMTraceFormatString "+CMountCB::MkDirL() drive %d aName %*S" */
sl@0
   123
		ECMountCBMkDirL,
sl@0
   124
        /** @SYMTraceFormatString "-CMountCB::MkDirL() r %d" */
sl@0
   125
        ECMountCBMkDirLRet,
sl@0
   126
sl@0
   127
		/** @SYMTraceFormatString "+CMountCB::RmDirL() drive %d aName %*S" */
sl@0
   128
		ECMountCBRmDirL,
sl@0
   129
        /** @SYMTraceFormatString "-CMountCB::RmDirL() r %d" */
sl@0
   130
        ECMountCBRmDirLRet,
sl@0
   131
sl@0
   132
		/** @SYMTraceFormatString "+CMountCB::DeleteL() drive %d aName %*S" */
sl@0
   133
		ECMountCBDeleteL,
sl@0
   134
        /** @SYMTraceFormatString "-CMountCB::DeleteL() r %d" */
sl@0
   135
        ECMountCBDeleteLRet,
sl@0
   136
sl@0
   137
		/** @SYMTraceFormatString "+CMountCB::RenameL() drive %d anOldName %*S anNewName *S" */
sl@0
   138
		ECMountCBRenameL,
sl@0
   139
        /** @SYMTraceFormatString "-CMountCB::RenameL() r %d" */
sl@0
   140
        ECMountCBRenameLRet,
sl@0
   141
sl@0
   142
		/** @SYMTraceFormatString "+CMountCB::ReplaceL() drive %d anOldName %*S anNewName *S" */
sl@0
   143
		ECMountCBReplaceL,
sl@0
   144
        /** @SYMTraceFormatString "-CMountCB::ReplaceL() r %d" */
sl@0
   145
        ECMountCBReplaceLRet,
sl@0
   146
sl@0
   147
		/** @SYMTraceFormatString "+CMountCB::EntryL() drive %d aName %*S" */
sl@0
   148
		ECMountCBEntryL,
sl@0
   149
        /** @SYMTraceFormatString "-CMountCB::EntryL() r %d att %x modified %lx size %d" */
sl@0
   150
        ECMountCBEntryLRet,
sl@0
   151
sl@0
   152
		/** @SYMTraceFormatString "+CMountCB::SetEntryL() drive %d aName %*S aTime %lx aSetAttMask %x aClearAttMask %x" */
sl@0
   153
		ECMountCBSetEntryL,
sl@0
   154
        /** @SYMTraceFormatString "-CMountCB::SetEntryL() r %d" */
sl@0
   155
        ECMountCBSetEntryLRet,
sl@0
   156
sl@0
   157
        /** @SYMTraceFormatString "+CMountCB::FileOpenL() drive %d aName %*S aMode %x anOpen %d aFile %x" */
sl@0
   158
		ECMountCBFileOpenL,
sl@0
   159
        /** @SYMTraceFormatString "-CMountCB::FileOpenL() r %d" */
sl@0
   160
        ECMountCBFileOpenLRet,
sl@0
   161
sl@0
   162
        /** @SYMTraceFormatString "+CMountCB::DirOpenL() drive %d aName %*S aDir %x" */
sl@0
   163
		ECMountCBDirOpenL,
sl@0
   164
        /** @SYMTraceFormatString "-CMountCB::DirOpenL() r %d" */
sl@0
   165
        ECMountCBDirOpenLRet,
sl@0
   166
sl@0
   167
		/** @SYMTraceFormatString "+CMountCB::RawReadL() drive %d aPos %ld aLength %d aTrg %x anOffset %x threadId %x" */
sl@0
   168
		ECMountCBRawReadL,
sl@0
   169
        /** @SYMTraceFormatString "-CMountCB::RawReadL() r %d" */
sl@0
   170
        ECMountCBRawReadLRet,
sl@0
   171
sl@0
   172
		/** @SYMTraceFormatString "+CMountCB::RawWriteL() drive %d aPos %ld aLength %d aTrg %x anOffset %x threadId %x" */
sl@0
   173
		ECMountCBRawWriteL,
sl@0
   174
        /** @SYMTraceFormatString "-CMountCB::RawWriteL() r %d" */
sl@0
   175
        ECMountCBRawWriteLRet,
sl@0
   176
sl@0
   177
		/** @SYMTraceFormatString "+CMountCB::GetShortNameL() drive %d aLongName %*S" */
sl@0
   178
		ECMountCBGetShortNameL,
sl@0
   179
        /** @SYMTraceFormatString "-CMountCB::GetShortNameL() r %d aShortName %*S" */
sl@0
   180
        ECMountCBGetShortNameLRet,
sl@0
   181
sl@0
   182
		/** @SYMTraceFormatString "+CMountCB::GetLongNameL() drive %d aShortName %*S" */
sl@0
   183
		ECMountCBGetLongNameL,
sl@0
   184
        /** @SYMTraceFormatString "-CMountCB::GetLongNameL() r %d aLongName %*S" */
sl@0
   185
        ECMountCBGetLongNameLRet,
sl@0
   186
sl@0
   187
		/** @SYMTraceFormatString "+CMountCB::ReadFileSectionL() drive %d aName %*S aPos %ld aTrg %x aLength %d threadId %x" */
sl@0
   188
		ECMountCBReadFileSectionL,
sl@0
   189
        /** @SYMTraceFormatString "-CMountCB::ReadFileSectionL() r %d" */
sl@0
   190
        ECMountCBReadFileSectionLRet,
sl@0
   191
sl@0
   192
		/** @SYMTraceFormatString "+CMountCB::CheckDisk1() drive %d" */
sl@0
   193
		ECMountCBCheckDisk1,
sl@0
   194
        /** @SYMTraceFormatString "-CMountCB::CheckDisk1() r %d" */
sl@0
   195
        ECMountCBCheckDisk1Ret,
sl@0
   196
sl@0
   197
		/** @SYMTraceFormatString "+CMountCB::CheckDisk2() drive %d aOperation %d aParam1 %x aParam2 %x" */
sl@0
   198
		ECMountCBCheckDisk2,
sl@0
   199
        /** @SYMTraceFormatString "-CMountCB::CheckDisk2() r %d" */
sl@0
   200
        ECMountCBCheckDisk2Ret,
sl@0
   201
sl@0
   202
		/** @SYMTraceFormatString "+CMountCB::ScanDrive1() drive %d" */
sl@0
   203
		ECMountCBScanDrive1,
sl@0
   204
        /** @SYMTraceFormatString "-CMountCB::ScanDrive1() r %d" */
sl@0
   205
        ECMountCBScanDrive1Ret,
sl@0
   206
sl@0
   207
		/** @SYMTraceFormatString "+CMountCB::ScanDrive2() drive %d aOperation %d aParam1 %x aParam2 %x" */
sl@0
   208
		ECMountCBScanDrive2,
sl@0
   209
        /** @SYMTraceFormatString "-CMountCB::ScanDrive2() r %d" */
sl@0
   210
        ECMountCBScanDrive2Ret,
sl@0
   211
sl@0
   212
		/** @SYMTraceFormatString "+CMountCB::ControlIO() drive %d aCommand %d aParam1 %x aParam2 %x threadId %x" */
sl@0
   213
		ECMountCBControlIO,
sl@0
   214
        /** @SYMTraceFormatString "-CMountCB::ControlIO() r %d" */
sl@0
   215
        ECMountCBControlIORet,
sl@0
   216
sl@0
   217
		/** @SYMTraceFormatString "+CMountCB::Lock() drive %d aStore %d" */
sl@0
   218
		ECMountCBLock,
sl@0
   219
        /** @SYMTraceFormatString "-CMountCB::Lock() r %d" */
sl@0
   220
        ECMountCBLockRet,
sl@0
   221
sl@0
   222
		/** @SYMTraceFormatString "+CMountCB::Unlock() drive %d aStore %d" */
sl@0
   223
		ECMountCBUnlock,
sl@0
   224
        /** @SYMTraceFormatString "-CMountCB::Unlock() r %d" */
sl@0
   225
        ECMountCBUnlockRet,
sl@0
   226
sl@0
   227
		/** @SYMTraceFormatString "+CMountCB::ClearPassword() drive %d" */
sl@0
   228
		ECMountCBClearPassword,
sl@0
   229
        /** @SYMTraceFormatString "-CMountCB::ClearPassword() r %d" */
sl@0
   230
        ECMountCBClearPasswordRet,
sl@0
   231
sl@0
   232
		/** @SYMTraceFormatString "+CMountCB::ForceRemountDrive() drive %d aMountInfo %x aMountInfoMessageHandle %x aFlags %x" */
sl@0
   233
		ECMountCBForceRemountDrive,
sl@0
   234
        /** @SYMTraceFormatString "-CMountCB::ForceRemountDrive() r %d" */
sl@0
   235
        ECMountCBForceRemountDriveRet,
sl@0
   236
sl@0
   237
		/** @SYMTraceFormatString "+CMountCB::FinaliseMount1() drive %d" */
sl@0
   238
		ECMountCBFinaliseMount1,
sl@0
   239
        /** @SYMTraceFormatString "-CMountCB::FinaliseMount1() r %d" */
sl@0
   240
        ECMountCBFinaliseMount1Ret,
sl@0
   241
sl@0
   242
		/** @SYMTraceFormatString "+CMountCB::FinaliseMount2() drive %d" */
sl@0
   243
		ECMountCBFinaliseMount2,
sl@0
   244
        /** @SYMTraceFormatString "-CMountCB::FinaliseMount2() r %d" */
sl@0
   245
        ECMountCBFinaliseMount2Ret,
sl@0
   246
sl@0
   247
		/** @SYMTraceFormatString "+CMountCB::MountControl() drive %d aLevel %d aOption %x aParam %x" */
sl@0
   248
		ECMountCBMountControl,
sl@0
   249
        /** @SYMTraceFormatString "-CMountCB::MountControl() r %d" */
sl@0
   250
        ECMountCBMountControlRet,
sl@0
   251
sl@0
   252
		/** @SYMTraceFormatString "+CMountCB::ESQ_RequestFreeSpace() drive %d" */
sl@0
   253
		ECMountCBFreeSpace,
sl@0
   254
        /** @SYMTraceFormatString "-CMountCB::ESQ_RequestFreeSpace() r %d FreeSpace %ld" */
sl@0
   255
        ECMountCBFreeSpaceRet,
sl@0
   256
sl@0
   257
		/** @SYMTraceFormatString "+CMountCB::ESQ_GetCurrentFreeSpace() drive %d" */
sl@0
   258
		ECMountCBCurrentFreeSpace,
sl@0
   259
        /** @SYMTraceFormatString "-CMountCB::ESQ_GetCurrentFreeSpace() r %d FreeSpace %ld" */
sl@0
   260
        ECMountCBCurrentFreeSpaceRet,
sl@0
   261
sl@0
   262
		/** @SYMTraceFormatString "+CMountCB::ESQ_MountedVolumeSize() drive %d" */
sl@0
   263
		ECMountCBVolumeSize,
sl@0
   264
        /** @SYMTraceFormatString "-CMountCB::ESQ_MountedVolumeSize() r %d size %ld" */
sl@0
   265
        ECMountCBVolumeSizeRet,
sl@0
   266
sl@0
   267
		/** @SYMTraceFormatString "+CMountCB::ErasePassword() drive %d" */
sl@0
   268
		ECMountCBErasePassword,
sl@0
   269
        /** @SYMTraceFormatString "-CMountCB::ErasePassword() r %d" */
sl@0
   270
        ECMountCBErasePasswordRet,
sl@0
   271
sl@0
   272
		/** @SYMTraceFormatString "+CMountCB::GetInterface() drive %d aInterfaceId %d aInput %x" */
sl@0
   273
		ECMountCBGetInterface,
sl@0
   274
        /** @SYMTraceFormatString "-CMountCB::GetInterface() r %d aInterface %x" */
sl@0
   275
        ECMountCBGetInterfaceRet,
sl@0
   276
sl@0
   277
		/** @SYMTraceFormatString "+CFileCB::RenameL() this %x aNewName %*S" */
sl@0
   278
		ECFileCBRenameL,
sl@0
   279
        /** @SYMTraceFormatString "-CFileCB::RenameL() r %d" */
sl@0
   280
        ECFileCBRenameLRet,
sl@0
   281
sl@0
   282
		/** @SYMTraceFormatString "+CFileCB::ReadL() this %x aPos %ld aLength %d aDes %x threadId %x aOffset %x" */
sl@0
   283
		ECFileCBReadL,
sl@0
   284
        /** @SYMTraceFormatString "-CFileCB::ReadL() r %d" */
sl@0
   285
        ECFileCBReadLRet,
sl@0
   286
sl@0
   287
		/** @SYMTraceFormatString "+CFileCB::WriteL() this %x aPos %ld aLength %d aDes %x threadId %x aOffset %x" */
sl@0
   288
		ECFileCBWriteL,
sl@0
   289
        /** @SYMTraceFormatString "-CFileCB::WriteL() r %d" */
sl@0
   290
        ECFileCBWriteLRet,
sl@0
   291
sl@0
   292
		/** @SYMTraceFormatString "+CFileCB::SetSizeL() this %x aSize %ld" */
sl@0
   293
		ECFileCBSetSizeL,
sl@0
   294
        /** @SYMTraceFormatString "-CFileCB::SetSizeL() r %d" */
sl@0
   295
        ECFileCBSetSizeLRet,
sl@0
   296
sl@0
   297
		/** @SYMTraceFormatString "+CFileCB::SetEntryL() this %x aTime %lx aSetAttMask %x aClearAttMask %x" */
sl@0
   298
		ECFileCBSetEntryL,
sl@0
   299
        /** @SYMTraceFormatString "-CFileCB::SetEntryL() r %d" */
sl@0
   300
        ECFileCBSetEntryLRet,
sl@0
   301
sl@0
   302
		/** @SYMTraceFormatString "+CFileCB::FlushDataL() this %x" */
sl@0
   303
		ECFileCBFlushDataL,
sl@0
   304
        /** @SYMTraceFormatString "-CFileCB::FlushDataL() r %d" */
sl@0
   305
        ECFileCBFlushDataLRet,
sl@0
   306
sl@0
   307
		/** @SYMTraceFormatString "+CFileCB::GetInterface() aInterfaceId %d aInput %x" */
sl@0
   308
		ECFileCBGetInterface,
sl@0
   309
        /** @SYMTraceFormatString "-CFileCB::GetInterface() r %d aInterface %x" */
sl@0
   310
        ECFileCBGetInterfaceRet,
sl@0
   311
sl@0
   312
sl@0
   313
		/** @SYMTraceFormatString "+CDirCB::ReadL() this %x" */
sl@0
   314
		ECDirCBReadL,
sl@0
   315
        /** @SYMTraceFormatString "-CDirCB::ReadL() r %d att %x modified %lx size %d" */
sl@0
   316
        ECDirCBReadLRet,
sl@0
   317
sl@0
   318
		/** @SYMTraceFormatString "+CDirCB::StoreLongEntryNameL() this %x" */
sl@0
   319
		ECDirCBStoreLongEntryNameL,
sl@0
   320
        /** @SYMTraceFormatString "-CDirCB::StoreLongEntryNameL() r %d" */
sl@0
   321
        ECDirCBStoreLongEntryNameLRet,
sl@0
   322
sl@0
   323
sl@0
   324
		/** @SYMTraceFormatString "+CFormatCB::DoFormatStepL() this %x" */
sl@0
   325
		ECFormatCBDoFormatStepL,
sl@0
   326
        /** @SYMTraceFormatString "-CFormatCB::DoFormatStepL() r %d  iCurrentStep %d" */
sl@0
   327
        ECFormatCBDoFormatStepLRet,
sl@0
   328
sl@0
   329
sl@0
   330
sl@0
   331
sl@0
   332
sl@0
   333
        /**
sl@0
   334
        Provided to allow the following compile time assert.
sl@0
   335
        */
sl@0
   336
        EFormatIdHighWaterMark,
sl@0
   337
        };
sl@0
   338
    __ASSERT_COMPILE(EFormatIdHighWaterMark <= (UTF::KMaxFormatId + 1));
sl@0
   339
	}
sl@0
   340
sl@0
   341
namespace UTraceModuleProxyDrive
sl@0
   342
    {
sl@0
   343
	/** 
sl@0
   344
	@SYMTraceFormatCategory EF32TraceUidProxyDrive 
sl@0
   345
    @SYMTraceFormatId
sl@0
   346
    */
sl@0
   347
    enum TFormatId
sl@0
   348
        {
sl@0
   349
		EReserved = UTF::KInitialClientFormat-1,
sl@0
   350
sl@0
   351
		/** @SYMTraceFormatString "+CLocalProxyDrive::New() aMount %x drive %d" */
sl@0
   352
		ECLocalProxyDriveNew,
sl@0
   353
        /** @SYMTraceFormatString "-CLocalProxyDrive::New() proxyDrive %x" */
sl@0
   354
        ECLocalProxyDriveNewRet,
sl@0
   355
sl@0
   356
sl@0
   357
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::Initialise() this %x" */
sl@0
   358
		ECBaseExtProxyDriveInitialise,
sl@0
   359
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::Initialise() r %d" */
sl@0
   360
        ECBaseExtProxyDriveInitialiseRet,
sl@0
   361
sl@0
   362
		/** @SYMTraceFormatString "+CLocalProxyDrive::Initialise() this %x" */
sl@0
   363
		ECLocalProxyDriveInitialise,
sl@0
   364
        /** @SYMTraceFormatString "-CLocalProxyDrive::Initialise() r %d" */
sl@0
   365
        ECLocalProxyDriveInitialiseRet,
sl@0
   366
sl@0
   367
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::ControlIO() this %x" */
sl@0
   368
		ECBaseExtProxyDriveControlIO,
sl@0
   369
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::ControlIO() r %d" */
sl@0
   370
        ECBaseExtProxyDriveControlIORet,
sl@0
   371
sl@0
   372
		/** @SYMTraceFormatString "+CLocalProxyDrive::ControlIO() this %x" */
sl@0
   373
		ECLocalProxyDriveControlIO,
sl@0
   374
        /** @SYMTraceFormatString "-CLocalProxyDrive::ControlIO() r %d" */
sl@0
   375
        ECLocalProxyDriveControlIORet,
sl@0
   376
sl@0
   377
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::Read1() this %x aPos %ld aLength %d aTrg %x threadId %x aOffset %x aFlags %x" */
sl@0
   378
		ECBaseExtProxyDriveRead1,
sl@0
   379
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::Read1() r %d" */
sl@0
   380
        ECBaseExtProxyDriveRead1Ret,
sl@0
   381
sl@0
   382
		/** @SYMTraceFormatString "+CLocalProxyDrive::Read1() this %x aPos %ld aLength %d aTrg %x threadId %x aOffset %x aFlags %x" */
sl@0
   383
		ECLocalProxyDriveRead1,
sl@0
   384
        /** @SYMTraceFormatString "-CLocalProxyDrive::Read1() r %d" */
sl@0
   385
        ECLocalProxyDriveRead1Ret,
sl@0
   386
sl@0
   387
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::Read2() this %x aPos %ld aLength %d aTrg %x threadId %x aOffset %x" */
sl@0
   388
		ECBaseExtProxyDriveRead2,
sl@0
   389
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::Read2() r %d" */
sl@0
   390
        ECBaseExtProxyDriveRead2Ret,
sl@0
   391
sl@0
   392
		/** @SYMTraceFormatString "+CLocalProxyDrive::Read2() this %x aPos %ld aLength %d aTrg %x threadId %x aOffset %x" */
sl@0
   393
		ECLocalProxyDriveRead2,
sl@0
   394
        /** @SYMTraceFormatString "-CLocalProxyDrive::Read2() r %d" */
sl@0
   395
        ECLocalProxyDriveRead2Ret,
sl@0
   396
sl@0
   397
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::Read3() this %x aPos %ld aLength %d aTrg %x" */
sl@0
   398
		ECBaseExtProxyDriveRead3,
sl@0
   399
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::Read3() r %d" */
sl@0
   400
        ECBaseExtProxyDriveRead3Ret,
sl@0
   401
sl@0
   402
		/** @SYMTraceFormatString "+CLocalProxyDrive::Read3() this %x aPos %ld aLength %d aTrg %x" */
sl@0
   403
		ECLocalProxyDriveRead3,
sl@0
   404
        /** @SYMTraceFormatString "-CLocalProxyDrive::Read3() r %d" */
sl@0
   405
        ECLocalProxyDriveRead3Ret,
sl@0
   406
sl@0
   407
sl@0
   408
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::Write1() this %x aPos %ld aLength %d aSrc %x threadId %x aOffset %x aFlags %x" */
sl@0
   409
		ECBaseExtProxyDriveWrite1,
sl@0
   410
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::Write1() r %d" */
sl@0
   411
        ECBaseExtProxyDriveWrite1Ret,
sl@0
   412
sl@0
   413
		/** @SYMTraceFormatString "+CLocalProxyDrive::Write1() this %x aPos %ld aLength %d aSrc %x threadId %x aOffset %x aFlags %x" */
sl@0
   414
		ECLocalProxyDriveWrite1,
sl@0
   415
        /** @SYMTraceFormatString "-CLocalProxyDrive::Write1() r %d" */
sl@0
   416
        ECLocalProxyDriveWrite1Ret,
sl@0
   417
sl@0
   418
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::Write2() this %x aPos %ld aLength %d aSrc %x threadId %x aOffset %x" */
sl@0
   419
		ECBaseExtProxyDriveWrite2,
sl@0
   420
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::Write2() r %d" */
sl@0
   421
        ECBaseExtProxyDriveWrite2Ret,
sl@0
   422
sl@0
   423
		/** @SYMTraceFormatString "+CLocalProxyDrive::Write2() this %x aPos %ld aLength %d aSrc %x threadId %x aOffset %x" */
sl@0
   424
		ECLocalProxyDriveWrite2,
sl@0
   425
        /** @SYMTraceFormatString "-CLocalProxyDrive::Write2() r %d" */
sl@0
   426
        ECLocalProxyDriveWrite2Ret,
sl@0
   427
sl@0
   428
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::Write3() this %x aPos %ld aLength %d aSrc %x" */
sl@0
   429
		ECBaseExtProxyDriveWrite3,
sl@0
   430
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::Write3() r %d" */
sl@0
   431
        ECBaseExtProxyDriveWrite3Ret,
sl@0
   432
sl@0
   433
		/** @SYMTraceFormatString "+CLocalProxyDrive::Write3() this %x aPos %ld aLength %d aSrc %x" */
sl@0
   434
		ECLocalProxyDriveWrite3,
sl@0
   435
        /** @SYMTraceFormatString "-CLocalProxyDrive::Write3() r %d" */
sl@0
   436
        ECLocalProxyDriveWrite3Ret,
sl@0
   437
sl@0
   438
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::Dismounted() this %x" */
sl@0
   439
		ECBaseExtProxyDriveDismounted,
sl@0
   440
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::Dismounted() r %d" */
sl@0
   441
        ECBaseExtProxyDriveDismountedRet,
sl@0
   442
sl@0
   443
		/** @SYMTraceFormatString "+CLocalProxyDrive::Dismounted() this %x" */
sl@0
   444
		ECLocalProxyDriveDismounted,
sl@0
   445
        /** @SYMTraceFormatString "-CLocalProxyDrive::Dismounted() r %d" */
sl@0
   446
        ECLocalProxyDriveDismountedRet,
sl@0
   447
sl@0
   448
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::Enlarge() this %x aLength %d" */
sl@0
   449
		ECBaseExtProxyDriveEnlarge,
sl@0
   450
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::Enlarge() r %d" */
sl@0
   451
        ECBaseExtProxyDriveEnlargeRet,
sl@0
   452
sl@0
   453
		/** @SYMTraceFormatString "+CLocalProxyDrive::Enlarge() this %x aLength %d" */
sl@0
   454
		ECLocalProxyDriveEnlarge,
sl@0
   455
        /** @SYMTraceFormatString "-CLocalProxyDrive::Enlarge() r %d" */
sl@0
   456
        ECLocalProxyDriveEnlargeRet,
sl@0
   457
sl@0
   458
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::ReduceSize() this %x aPos %d aLength %d" */
sl@0
   459
		ECBaseExtProxyDriveReduceSize,
sl@0
   460
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::ReduceSize() r %d" */
sl@0
   461
        ECBaseExtProxyDriveReduceSizeRet,
sl@0
   462
sl@0
   463
		/** @SYMTraceFormatString "+CLocalProxyDrive::ReduceSize() this %x aPos %d aLength %d" */
sl@0
   464
		ECLocalProxyDriveReduceSize,
sl@0
   465
        /** @SYMTraceFormatString "-CLocalProxyDrive::ReduceSize() r %d" */
sl@0
   466
        ECLocalProxyDriveReduceSizeRet,
sl@0
   467
sl@0
   468
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::Caps() this %x" */
sl@0
   469
		ECBaseExtProxyDriveCaps,
sl@0
   470
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::Caps() r %d" */
sl@0
   471
        ECBaseExtProxyDriveCapsRet,
sl@0
   472
sl@0
   473
		/** @SYMTraceFormatString "+CLocalProxyDrive::Caps() this %x" */
sl@0
   474
		ECLocalProxyDriveCaps,
sl@0
   475
        /** @SYMTraceFormatString "-CLocalProxyDrive::Caps() r %d" */
sl@0
   476
        ECLocalProxyDriveCapsRet,
sl@0
   477
sl@0
   478
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::Format1() this %x" */
sl@0
   479
		ECBaseExtProxyDriveFormat1,
sl@0
   480
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::Format1() r %d iFormatIsCurrent %d i512ByteSectorsFormatted %d iMaxBytesPerFormat %d" */
sl@0
   481
        ECBaseExtProxyDriveFormat1Ret,
sl@0
   482
sl@0
   483
		/** @SYMTraceFormatString "+CLocalProxyDrive::Format1() this %x" */
sl@0
   484
		ECLocalProxyDriveFormat1,
sl@0
   485
        /** @SYMTraceFormatString "-CLocalProxyDrive::Format1() r %d iFormatIsCurrent %d i512ByteSectorsFormatted %d iMaxBytesPerFormat %d" */
sl@0
   486
        ECLocalProxyDriveFormat1Ret,
sl@0
   487
sl@0
   488
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::Format2() this %x aPos %ld aLength %d" */
sl@0
   489
		ECBaseExtProxyDriveFormat2,
sl@0
   490
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::Format2() r %d" */
sl@0
   491
        ECBaseExtProxyDriveFormat2Ret,
sl@0
   492
sl@0
   493
		/** @SYMTraceFormatString "+CLocalProxyDrive::Format2() this %x aPos %ld aLength %d" */
sl@0
   494
		ECLocalProxyDriveFormat2,
sl@0
   495
        /** @SYMTraceFormatString "-CLocalProxyDrive::Format2() r %d" */
sl@0
   496
        ECLocalProxyDriveFormat2Ret,
sl@0
   497
sl@0
   498
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::SetMountInfo() this %x" */
sl@0
   499
		ECBaseExtProxyDriveSetMountInfo,
sl@0
   500
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::SetMountInfo() r %d" */
sl@0
   501
        ECBaseExtProxyDriveSetMountInfoRet,
sl@0
   502
sl@0
   503
		/** @SYMTraceFormatString "+CLocalProxyDrive::SetMountInfo() this %x" */
sl@0
   504
		ECLocalProxyDriveSetMountInfo,
sl@0
   505
        /** @SYMTraceFormatString "-CLocalProxyDrive::SetMountInfo() r %d" */
sl@0
   506
        ECLocalProxyDriveSetMountInfoRet,
sl@0
   507
sl@0
   508
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::ForceRemount() this %x" */
sl@0
   509
		ECBaseExtProxyDriveForceRemount,
sl@0
   510
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::ForceRemount() r %d" */
sl@0
   511
        ECBaseExtProxyDriveForceRemountRet,
sl@0
   512
sl@0
   513
		/** @SYMTraceFormatString "+CLocalProxyDrive::ForceRemount() this %x" */
sl@0
   514
		ECLocalProxyDriveForceRemount,
sl@0
   515
        /** @SYMTraceFormatString "-CLocalProxyDrive::ForceRemount() r %d" */
sl@0
   516
        ECLocalProxyDriveForceRemountRet,
sl@0
   517
sl@0
   518
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::Unlock() this %x aPassword %d" */
sl@0
   519
		ECBaseExtProxyDriveUnlock,
sl@0
   520
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::Unlock() r %d" */
sl@0
   521
        ECBaseExtProxyDriveUnlockRet,
sl@0
   522
sl@0
   523
		/** @SYMTraceFormatString "+CLocalProxyDrive::Unlock() this %x aPassword %d" */
sl@0
   524
		ECLocalProxyDriveUnlock,
sl@0
   525
        /** @SYMTraceFormatString "-CLocalProxyDrive::Unlock() r %d" */
sl@0
   526
        ECLocalProxyDriveUnlockRet,
sl@0
   527
sl@0
   528
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::Lock() this %x aPassword %d" */
sl@0
   529
		ECBaseExtProxyDriveLock,
sl@0
   530
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::Lock() r %d" */
sl@0
   531
        ECBaseExtProxyDriveLockRet,
sl@0
   532
sl@0
   533
		/** @SYMTraceFormatString "+CLocalProxyDrive::Lock() this %x aPassword %d" */
sl@0
   534
		ECLocalProxyDriveLock,
sl@0
   535
        /** @SYMTraceFormatString "-CLocalProxyDrive::Lock() r %d" */
sl@0
   536
        ECLocalProxyDriveLockRet,
sl@0
   537
sl@0
   538
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::Clear() this %x" */
sl@0
   539
		ECBaseExtProxyDriveClear,
sl@0
   540
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::Clear() r %d" */
sl@0
   541
        ECBaseExtProxyDriveClearRet,
sl@0
   542
sl@0
   543
		/** @SYMTraceFormatString "+CLocalProxyDrive::Clear() this %x" */
sl@0
   544
		ECLocalProxyDriveClear,
sl@0
   545
        /** @SYMTraceFormatString "-CLocalProxyDrive::Clear() r %d" */
sl@0
   546
        ECLocalProxyDriveClearRet,
sl@0
   547
sl@0
   548
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::ErasePassword() this %x" */
sl@0
   549
		ECBaseExtProxyDriveErasePassword,
sl@0
   550
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::ErasePassword() r %d" */
sl@0
   551
        ECBaseExtProxyDriveErasePasswordRet,
sl@0
   552
sl@0
   553
		/** @SYMTraceFormatString "+CLocalProxyDrive::ErasePassword() this %x" */
sl@0
   554
		ECLocalProxyDriveErasePassword,
sl@0
   555
        /** @SYMTraceFormatString "-CLocalProxyDrive::ErasePassword() r %d" */
sl@0
   556
        ECLocalProxyDriveErasePasswordRet,
sl@0
   557
sl@0
   558
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::DeleteNotify() this %x aPos %ld aLength %d" */
sl@0
   559
		ECBaseExtProxyDriveDeleteNotify,
sl@0
   560
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::DeleteNotify() r %d" */
sl@0
   561
        ECBaseExtProxyDriveDeleteNotifyRet,
sl@0
   562
sl@0
   563
		/** @SYMTraceFormatString "+CLocalProxyDrive::DeleteNotify() this %x aPos %ld aLength %d" */
sl@0
   564
		ECLocalProxyDriveDeleteNotify,
sl@0
   565
        /** @SYMTraceFormatString "-CLocalProxyDrive::DeleteNotify() r %d" */
sl@0
   566
        ECLocalProxyDriveDeleteNotifyRet,
sl@0
   567
sl@0
   568
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::GetLastErrorInfo() this %x" */
sl@0
   569
		ECBaseExtProxyDriveGetLastErrorInfo,
sl@0
   570
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::GetLastErrorInfo() r %d" */
sl@0
   571
        ECBaseExtProxyDriveGetLastErrorInfoRet,
sl@0
   572
sl@0
   573
		/** @SYMTraceFormatString "+CLocalProxyDrive::GetLastErrorInfo() this %x" */
sl@0
   574
		ECLocalProxyDriveGetLastErrorInfo,
sl@0
   575
        /** @SYMTraceFormatString "-CLocalProxyDrive::GetLastErrorInfo() r %d" */
sl@0
   576
        ECLocalProxyDriveGetLastErrorInfoRet,
sl@0
   577
sl@0
   578
		/** @SYMTraceFormatString "+CBaseExtProxyDrive::GetInterface() this %x aInterfaceId %d aInput %x" */
sl@0
   579
		ECBaseExtProxyDriveGetInterface,
sl@0
   580
        /** @SYMTraceFormatString "-CBaseExtProxyDrive::GetInterface() r %d aInterface %x" */
sl@0
   581
        ECBaseExtProxyDriveGetInterfaceRet,
sl@0
   582
sl@0
   583
		/** @SYMTraceFormatString "+CLocalProxyDrive::GetInterface() this %x aInterfaceId %d aInput %x" */
sl@0
   584
		ECLocalProxyDriveGetInterface,
sl@0
   585
        /** @SYMTraceFormatString "-CLocalProxyDrive::GetInterface() r %d aInterface %x" */
sl@0
   586
        ECLocalProxyDriveGetInterfaceRet,
sl@0
   587
sl@0
   588
sl@0
   589
sl@0
   590
sl@0
   591
        /**
sl@0
   592
        Provided to allow the following compile time assert.
sl@0
   593
        */
sl@0
   594
        EFormatIdHighWaterMark,
sl@0
   595
        };
sl@0
   596
    __ASSERT_COMPILE(EFormatIdHighWaterMark <= (UTF::KMaxFormatId + 1));
sl@0
   597
sl@0
   598
sl@0
   599
sl@0
   600
    } // end of namespace UTraceModuleFileSys
sl@0
   601
sl@0
   602
	
sl@0
   603
#endif // UTRACEEFILE_H