1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/kernelhwsrv/userlibandfileserver/fileserver/inc/utraceefile.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,603 @@
1.4 +
1.5 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +// All rights reserved.
1.7 +// This component and the accompanying materials are made available
1.8 +// under the terms of the License "Eclipse Public License v1.0"
1.9 +// which accompanies this distribution, and is available
1.10 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +//
1.12 +// Initial Contributors:
1.13 +// Nokia Corporation - initial contribution.
1.14 +//
1.15 +// Contributors:
1.16 +//
1.17 +// Description:
1.18 +// File Server tracing
1.19 +//
1.20 +//
1.21 +
1.22 +/**
1.23 + @file
1.24 + @publishedPartner
1.25 + @prototype
1.26 +*/
1.27 +
1.28 +#ifndef UTRACEEFILE_H
1.29 +#define UTRACEEFILE_H
1.30 +
1.31 +
1.32 +#include <f32tracedef.h>
1.33 +
1.34 +/**
1.35 +This defines trace attributes to be used by file-system tracing
1.36 +
1.37 +*/
1.38 +namespace UTraceModuleFileSys
1.39 + {
1.40 +
1.41 + /**
1.42 + @SYMTraceFormatCategory EF32TraceUidFileSys
1.43 + @SYMTraceFormatId
1.44 + */
1.45 + enum TFormatId
1.46 + {
1.47 + EReserved = UTF::KInitialClientFormat-1,
1.48 +
1.49 + /** @SYMTraceFormatString "+CFileSystem::CFileSystem()" */
1.50 + ECFileSystemConstructor,
1.51 + /** @SYMTraceFormatString "-CFileSystem::CFileSystem()" */
1.52 + ECFileSystemConstructorReturn,
1.53 +
1.54 + /** @SYMTraceFormatString "+~CFileSystem::CFileSystem()" */
1.55 + ECFileSystemDestructor,
1.56 + /** @SYMTraceFormatString "-~CFileSystem::CFileSystem()" */
1.57 + ECFileSystemDestructorReturn,
1.58 +
1.59 + /** @SYMTraceFormatString "+CFileSystem::New() handle %x" */
1.60 + ECFileSystemNew,
1.61 + /** @SYMTraceFormatString "-CFileSystem::New() fileSystem %x" */
1.62 + ECFileSystemNewRet,
1.63 +
1.64 + /** @SYMTraceFormatString "+CFileSystem::Remove() this %x" */
1.65 + ECFileSystemRemove,
1.66 + /** @SYMTraceFormatString "-CFileSystem::Remove()" */
1.67 + ECFileSystemRemoveRet,
1.68 +
1.69 + /** @SYMTraceFormatString "CFileSystem::IsExtensionSupported() this %x r %d" */
1.70 + ECFileSystemIsExtensionSupported,
1.71 +
1.72 + /** @SYMTraceFormatString "+CFileSystem::Install() this %x" */
1.73 + ECFileSystemInstall,
1.74 + /** @SYMTraceFormatString "-CFileSystem::Install() r %d Name %*S" */
1.75 + ECFileSystemInstallRet,
1.76 +
1.77 + /** @SYMTraceFormatString "+CFileSystem::NewMountL() this %x drive %d" */
1.78 + ECFileSystemNewMountL,
1.79 + /** @SYMTraceFormatString "-CFileSystem::NewMountL() r %d CMountCB %x" */
1.80 + ECFileSystemNewMountLRet,
1.81 +
1.82 + /** @SYMTraceFormatString "+CFileSystem::NewFileL() this %x drive %d" */
1.83 + ECFileSystemNewFileL,
1.84 + /** @SYMTraceFormatString "-CFileSystem::NewFileL() r %d CFileCB %x" */
1.85 + ECFileSystemNewFileLRet,
1.86 +
1.87 + /** @SYMTraceFormatString "+CFileSystem::NewDirL() this %x drive %d" */
1.88 + ECFileSystemNewDirL,
1.89 + /** @SYMTraceFormatString "-CFileSystem::NewDirL() r %d CDirCB %x" */
1.90 + ECFileSystemNewDirLRet,
1.91 +
1.92 + /** @SYMTraceFormatString "+CFileSystem::NewFormatL() this %x drive %d" */
1.93 + ECFileSystemNewFormatL,
1.94 + /** @SYMTraceFormatString "-CFileSystem::NewFormatL() r %d CFormatCB %x" */
1.95 + ECFileSystemNewFormatLRet,
1.96 +
1.97 + /** @SYMTraceFormatString "+CFileSystem::DriveInfo() this %x aDriveNumber %d" */
1.98 + ECFileSystemDriveInfo,
1.99 + /** @SYMTraceFormatString "-CFileSystem::DriveInfo() type %d driveAtt %x mediaAtt %x" */
1.100 + ECFileSystemDriveInfoRet,
1.101 +
1.102 +
1.103 +
1.104 + /** @SYMTraceFormatString "+CMountCB::ReMount() drive %d" */
1.105 + ECMountCBReMount,
1.106 + /** @SYMTraceFormatString "-CMountCB::ReMount() success %d" */
1.107 + ECMountCBReMountRet,
1.108 +
1.109 + /** @SYMTraceFormatString "+CMountCB::Dismounted() drive %d" */
1.110 + ECMountCBDismounted,
1.111 + /** @SYMTraceFormatString "-CMountCB::Dismounted()" */
1.112 + ECMountCBDismountedRet,
1.113 +
1.114 +
1.115 + /** @SYMTraceFormatString "+CMountCB::VolumeL() drive %d" */
1.116 + ECMountCBVolumeL,
1.117 + /** @SYMTraceFormatString "-CMountCB::VolumeL() r %d iUniqueID %x iSize %ld iFree %ld iFileCacheFlags %x" */
1.118 + ECMountCBVolumeLRet,
1.119 +
1.120 + /** @SYMTraceFormatString "+CMountCB::SetVolumeL() drive %d aName %*S" */
1.121 + ECMountCBSetVolumeL,
1.122 + /** @SYMTraceFormatString "-CMountCB::SetVolumeL() r %d" */
1.123 + ECMountCBSetVolumeLRet,
1.124 +
1.125 + /** @SYMTraceFormatString "+CMountCB::MkDirL() drive %d aName %*S" */
1.126 + ECMountCBMkDirL,
1.127 + /** @SYMTraceFormatString "-CMountCB::MkDirL() r %d" */
1.128 + ECMountCBMkDirLRet,
1.129 +
1.130 + /** @SYMTraceFormatString "+CMountCB::RmDirL() drive %d aName %*S" */
1.131 + ECMountCBRmDirL,
1.132 + /** @SYMTraceFormatString "-CMountCB::RmDirL() r %d" */
1.133 + ECMountCBRmDirLRet,
1.134 +
1.135 + /** @SYMTraceFormatString "+CMountCB::DeleteL() drive %d aName %*S" */
1.136 + ECMountCBDeleteL,
1.137 + /** @SYMTraceFormatString "-CMountCB::DeleteL() r %d" */
1.138 + ECMountCBDeleteLRet,
1.139 +
1.140 + /** @SYMTraceFormatString "+CMountCB::RenameL() drive %d anOldName %*S anNewName *S" */
1.141 + ECMountCBRenameL,
1.142 + /** @SYMTraceFormatString "-CMountCB::RenameL() r %d" */
1.143 + ECMountCBRenameLRet,
1.144 +
1.145 + /** @SYMTraceFormatString "+CMountCB::ReplaceL() drive %d anOldName %*S anNewName *S" */
1.146 + ECMountCBReplaceL,
1.147 + /** @SYMTraceFormatString "-CMountCB::ReplaceL() r %d" */
1.148 + ECMountCBReplaceLRet,
1.149 +
1.150 + /** @SYMTraceFormatString "+CMountCB::EntryL() drive %d aName %*S" */
1.151 + ECMountCBEntryL,
1.152 + /** @SYMTraceFormatString "-CMountCB::EntryL() r %d att %x modified %lx size %d" */
1.153 + ECMountCBEntryLRet,
1.154 +
1.155 + /** @SYMTraceFormatString "+CMountCB::SetEntryL() drive %d aName %*S aTime %lx aSetAttMask %x aClearAttMask %x" */
1.156 + ECMountCBSetEntryL,
1.157 + /** @SYMTraceFormatString "-CMountCB::SetEntryL() r %d" */
1.158 + ECMountCBSetEntryLRet,
1.159 +
1.160 + /** @SYMTraceFormatString "+CMountCB::FileOpenL() drive %d aName %*S aMode %x anOpen %d aFile %x" */
1.161 + ECMountCBFileOpenL,
1.162 + /** @SYMTraceFormatString "-CMountCB::FileOpenL() r %d" */
1.163 + ECMountCBFileOpenLRet,
1.164 +
1.165 + /** @SYMTraceFormatString "+CMountCB::DirOpenL() drive %d aName %*S aDir %x" */
1.166 + ECMountCBDirOpenL,
1.167 + /** @SYMTraceFormatString "-CMountCB::DirOpenL() r %d" */
1.168 + ECMountCBDirOpenLRet,
1.169 +
1.170 + /** @SYMTraceFormatString "+CMountCB::RawReadL() drive %d aPos %ld aLength %d aTrg %x anOffset %x threadId %x" */
1.171 + ECMountCBRawReadL,
1.172 + /** @SYMTraceFormatString "-CMountCB::RawReadL() r %d" */
1.173 + ECMountCBRawReadLRet,
1.174 +
1.175 + /** @SYMTraceFormatString "+CMountCB::RawWriteL() drive %d aPos %ld aLength %d aTrg %x anOffset %x threadId %x" */
1.176 + ECMountCBRawWriteL,
1.177 + /** @SYMTraceFormatString "-CMountCB::RawWriteL() r %d" */
1.178 + ECMountCBRawWriteLRet,
1.179 +
1.180 + /** @SYMTraceFormatString "+CMountCB::GetShortNameL() drive %d aLongName %*S" */
1.181 + ECMountCBGetShortNameL,
1.182 + /** @SYMTraceFormatString "-CMountCB::GetShortNameL() r %d aShortName %*S" */
1.183 + ECMountCBGetShortNameLRet,
1.184 +
1.185 + /** @SYMTraceFormatString "+CMountCB::GetLongNameL() drive %d aShortName %*S" */
1.186 + ECMountCBGetLongNameL,
1.187 + /** @SYMTraceFormatString "-CMountCB::GetLongNameL() r %d aLongName %*S" */
1.188 + ECMountCBGetLongNameLRet,
1.189 +
1.190 + /** @SYMTraceFormatString "+CMountCB::ReadFileSectionL() drive %d aName %*S aPos %ld aTrg %x aLength %d threadId %x" */
1.191 + ECMountCBReadFileSectionL,
1.192 + /** @SYMTraceFormatString "-CMountCB::ReadFileSectionL() r %d" */
1.193 + ECMountCBReadFileSectionLRet,
1.194 +
1.195 + /** @SYMTraceFormatString "+CMountCB::CheckDisk1() drive %d" */
1.196 + ECMountCBCheckDisk1,
1.197 + /** @SYMTraceFormatString "-CMountCB::CheckDisk1() r %d" */
1.198 + ECMountCBCheckDisk1Ret,
1.199 +
1.200 + /** @SYMTraceFormatString "+CMountCB::CheckDisk2() drive %d aOperation %d aParam1 %x aParam2 %x" */
1.201 + ECMountCBCheckDisk2,
1.202 + /** @SYMTraceFormatString "-CMountCB::CheckDisk2() r %d" */
1.203 + ECMountCBCheckDisk2Ret,
1.204 +
1.205 + /** @SYMTraceFormatString "+CMountCB::ScanDrive1() drive %d" */
1.206 + ECMountCBScanDrive1,
1.207 + /** @SYMTraceFormatString "-CMountCB::ScanDrive1() r %d" */
1.208 + ECMountCBScanDrive1Ret,
1.209 +
1.210 + /** @SYMTraceFormatString "+CMountCB::ScanDrive2() drive %d aOperation %d aParam1 %x aParam2 %x" */
1.211 + ECMountCBScanDrive2,
1.212 + /** @SYMTraceFormatString "-CMountCB::ScanDrive2() r %d" */
1.213 + ECMountCBScanDrive2Ret,
1.214 +
1.215 + /** @SYMTraceFormatString "+CMountCB::ControlIO() drive %d aCommand %d aParam1 %x aParam2 %x threadId %x" */
1.216 + ECMountCBControlIO,
1.217 + /** @SYMTraceFormatString "-CMountCB::ControlIO() r %d" */
1.218 + ECMountCBControlIORet,
1.219 +
1.220 + /** @SYMTraceFormatString "+CMountCB::Lock() drive %d aStore %d" */
1.221 + ECMountCBLock,
1.222 + /** @SYMTraceFormatString "-CMountCB::Lock() r %d" */
1.223 + ECMountCBLockRet,
1.224 +
1.225 + /** @SYMTraceFormatString "+CMountCB::Unlock() drive %d aStore %d" */
1.226 + ECMountCBUnlock,
1.227 + /** @SYMTraceFormatString "-CMountCB::Unlock() r %d" */
1.228 + ECMountCBUnlockRet,
1.229 +
1.230 + /** @SYMTraceFormatString "+CMountCB::ClearPassword() drive %d" */
1.231 + ECMountCBClearPassword,
1.232 + /** @SYMTraceFormatString "-CMountCB::ClearPassword() r %d" */
1.233 + ECMountCBClearPasswordRet,
1.234 +
1.235 + /** @SYMTraceFormatString "+CMountCB::ForceRemountDrive() drive %d aMountInfo %x aMountInfoMessageHandle %x aFlags %x" */
1.236 + ECMountCBForceRemountDrive,
1.237 + /** @SYMTraceFormatString "-CMountCB::ForceRemountDrive() r %d" */
1.238 + ECMountCBForceRemountDriveRet,
1.239 +
1.240 + /** @SYMTraceFormatString "+CMountCB::FinaliseMount1() drive %d" */
1.241 + ECMountCBFinaliseMount1,
1.242 + /** @SYMTraceFormatString "-CMountCB::FinaliseMount1() r %d" */
1.243 + ECMountCBFinaliseMount1Ret,
1.244 +
1.245 + /** @SYMTraceFormatString "+CMountCB::FinaliseMount2() drive %d" */
1.246 + ECMountCBFinaliseMount2,
1.247 + /** @SYMTraceFormatString "-CMountCB::FinaliseMount2() r %d" */
1.248 + ECMountCBFinaliseMount2Ret,
1.249 +
1.250 + /** @SYMTraceFormatString "+CMountCB::MountControl() drive %d aLevel %d aOption %x aParam %x" */
1.251 + ECMountCBMountControl,
1.252 + /** @SYMTraceFormatString "-CMountCB::MountControl() r %d" */
1.253 + ECMountCBMountControlRet,
1.254 +
1.255 + /** @SYMTraceFormatString "+CMountCB::ESQ_RequestFreeSpace() drive %d" */
1.256 + ECMountCBFreeSpace,
1.257 + /** @SYMTraceFormatString "-CMountCB::ESQ_RequestFreeSpace() r %d FreeSpace %ld" */
1.258 + ECMountCBFreeSpaceRet,
1.259 +
1.260 + /** @SYMTraceFormatString "+CMountCB::ESQ_GetCurrentFreeSpace() drive %d" */
1.261 + ECMountCBCurrentFreeSpace,
1.262 + /** @SYMTraceFormatString "-CMountCB::ESQ_GetCurrentFreeSpace() r %d FreeSpace %ld" */
1.263 + ECMountCBCurrentFreeSpaceRet,
1.264 +
1.265 + /** @SYMTraceFormatString "+CMountCB::ESQ_MountedVolumeSize() drive %d" */
1.266 + ECMountCBVolumeSize,
1.267 + /** @SYMTraceFormatString "-CMountCB::ESQ_MountedVolumeSize() r %d size %ld" */
1.268 + ECMountCBVolumeSizeRet,
1.269 +
1.270 + /** @SYMTraceFormatString "+CMountCB::ErasePassword() drive %d" */
1.271 + ECMountCBErasePassword,
1.272 + /** @SYMTraceFormatString "-CMountCB::ErasePassword() r %d" */
1.273 + ECMountCBErasePasswordRet,
1.274 +
1.275 + /** @SYMTraceFormatString "+CMountCB::GetInterface() drive %d aInterfaceId %d aInput %x" */
1.276 + ECMountCBGetInterface,
1.277 + /** @SYMTraceFormatString "-CMountCB::GetInterface() r %d aInterface %x" */
1.278 + ECMountCBGetInterfaceRet,
1.279 +
1.280 + /** @SYMTraceFormatString "+CFileCB::RenameL() this %x aNewName %*S" */
1.281 + ECFileCBRenameL,
1.282 + /** @SYMTraceFormatString "-CFileCB::RenameL() r %d" */
1.283 + ECFileCBRenameLRet,
1.284 +
1.285 + /** @SYMTraceFormatString "+CFileCB::ReadL() this %x aPos %ld aLength %d aDes %x threadId %x aOffset %x" */
1.286 + ECFileCBReadL,
1.287 + /** @SYMTraceFormatString "-CFileCB::ReadL() r %d" */
1.288 + ECFileCBReadLRet,
1.289 +
1.290 + /** @SYMTraceFormatString "+CFileCB::WriteL() this %x aPos %ld aLength %d aDes %x threadId %x aOffset %x" */
1.291 + ECFileCBWriteL,
1.292 + /** @SYMTraceFormatString "-CFileCB::WriteL() r %d" */
1.293 + ECFileCBWriteLRet,
1.294 +
1.295 + /** @SYMTraceFormatString "+CFileCB::SetSizeL() this %x aSize %ld" */
1.296 + ECFileCBSetSizeL,
1.297 + /** @SYMTraceFormatString "-CFileCB::SetSizeL() r %d" */
1.298 + ECFileCBSetSizeLRet,
1.299 +
1.300 + /** @SYMTraceFormatString "+CFileCB::SetEntryL() this %x aTime %lx aSetAttMask %x aClearAttMask %x" */
1.301 + ECFileCBSetEntryL,
1.302 + /** @SYMTraceFormatString "-CFileCB::SetEntryL() r %d" */
1.303 + ECFileCBSetEntryLRet,
1.304 +
1.305 + /** @SYMTraceFormatString "+CFileCB::FlushDataL() this %x" */
1.306 + ECFileCBFlushDataL,
1.307 + /** @SYMTraceFormatString "-CFileCB::FlushDataL() r %d" */
1.308 + ECFileCBFlushDataLRet,
1.309 +
1.310 + /** @SYMTraceFormatString "+CFileCB::GetInterface() aInterfaceId %d aInput %x" */
1.311 + ECFileCBGetInterface,
1.312 + /** @SYMTraceFormatString "-CFileCB::GetInterface() r %d aInterface %x" */
1.313 + ECFileCBGetInterfaceRet,
1.314 +
1.315 +
1.316 + /** @SYMTraceFormatString "+CDirCB::ReadL() this %x" */
1.317 + ECDirCBReadL,
1.318 + /** @SYMTraceFormatString "-CDirCB::ReadL() r %d att %x modified %lx size %d" */
1.319 + ECDirCBReadLRet,
1.320 +
1.321 + /** @SYMTraceFormatString "+CDirCB::StoreLongEntryNameL() this %x" */
1.322 + ECDirCBStoreLongEntryNameL,
1.323 + /** @SYMTraceFormatString "-CDirCB::StoreLongEntryNameL() r %d" */
1.324 + ECDirCBStoreLongEntryNameLRet,
1.325 +
1.326 +
1.327 + /** @SYMTraceFormatString "+CFormatCB::DoFormatStepL() this %x" */
1.328 + ECFormatCBDoFormatStepL,
1.329 + /** @SYMTraceFormatString "-CFormatCB::DoFormatStepL() r %d iCurrentStep %d" */
1.330 + ECFormatCBDoFormatStepLRet,
1.331 +
1.332 +
1.333 +
1.334 +
1.335 +
1.336 + /**
1.337 + Provided to allow the following compile time assert.
1.338 + */
1.339 + EFormatIdHighWaterMark,
1.340 + };
1.341 + __ASSERT_COMPILE(EFormatIdHighWaterMark <= (UTF::KMaxFormatId + 1));
1.342 + }
1.343 +
1.344 +namespace UTraceModuleProxyDrive
1.345 + {
1.346 + /**
1.347 + @SYMTraceFormatCategory EF32TraceUidProxyDrive
1.348 + @SYMTraceFormatId
1.349 + */
1.350 + enum TFormatId
1.351 + {
1.352 + EReserved = UTF::KInitialClientFormat-1,
1.353 +
1.354 + /** @SYMTraceFormatString "+CLocalProxyDrive::New() aMount %x drive %d" */
1.355 + ECLocalProxyDriveNew,
1.356 + /** @SYMTraceFormatString "-CLocalProxyDrive::New() proxyDrive %x" */
1.357 + ECLocalProxyDriveNewRet,
1.358 +
1.359 +
1.360 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::Initialise() this %x" */
1.361 + ECBaseExtProxyDriveInitialise,
1.362 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::Initialise() r %d" */
1.363 + ECBaseExtProxyDriveInitialiseRet,
1.364 +
1.365 + /** @SYMTraceFormatString "+CLocalProxyDrive::Initialise() this %x" */
1.366 + ECLocalProxyDriveInitialise,
1.367 + /** @SYMTraceFormatString "-CLocalProxyDrive::Initialise() r %d" */
1.368 + ECLocalProxyDriveInitialiseRet,
1.369 +
1.370 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::ControlIO() this %x" */
1.371 + ECBaseExtProxyDriveControlIO,
1.372 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::ControlIO() r %d" */
1.373 + ECBaseExtProxyDriveControlIORet,
1.374 +
1.375 + /** @SYMTraceFormatString "+CLocalProxyDrive::ControlIO() this %x" */
1.376 + ECLocalProxyDriveControlIO,
1.377 + /** @SYMTraceFormatString "-CLocalProxyDrive::ControlIO() r %d" */
1.378 + ECLocalProxyDriveControlIORet,
1.379 +
1.380 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::Read1() this %x aPos %ld aLength %d aTrg %x threadId %x aOffset %x aFlags %x" */
1.381 + ECBaseExtProxyDriveRead1,
1.382 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::Read1() r %d" */
1.383 + ECBaseExtProxyDriveRead1Ret,
1.384 +
1.385 + /** @SYMTraceFormatString "+CLocalProxyDrive::Read1() this %x aPos %ld aLength %d aTrg %x threadId %x aOffset %x aFlags %x" */
1.386 + ECLocalProxyDriveRead1,
1.387 + /** @SYMTraceFormatString "-CLocalProxyDrive::Read1() r %d" */
1.388 + ECLocalProxyDriveRead1Ret,
1.389 +
1.390 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::Read2() this %x aPos %ld aLength %d aTrg %x threadId %x aOffset %x" */
1.391 + ECBaseExtProxyDriveRead2,
1.392 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::Read2() r %d" */
1.393 + ECBaseExtProxyDriveRead2Ret,
1.394 +
1.395 + /** @SYMTraceFormatString "+CLocalProxyDrive::Read2() this %x aPos %ld aLength %d aTrg %x threadId %x aOffset %x" */
1.396 + ECLocalProxyDriveRead2,
1.397 + /** @SYMTraceFormatString "-CLocalProxyDrive::Read2() r %d" */
1.398 + ECLocalProxyDriveRead2Ret,
1.399 +
1.400 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::Read3() this %x aPos %ld aLength %d aTrg %x" */
1.401 + ECBaseExtProxyDriveRead3,
1.402 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::Read3() r %d" */
1.403 + ECBaseExtProxyDriveRead3Ret,
1.404 +
1.405 + /** @SYMTraceFormatString "+CLocalProxyDrive::Read3() this %x aPos %ld aLength %d aTrg %x" */
1.406 + ECLocalProxyDriveRead3,
1.407 + /** @SYMTraceFormatString "-CLocalProxyDrive::Read3() r %d" */
1.408 + ECLocalProxyDriveRead3Ret,
1.409 +
1.410 +
1.411 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::Write1() this %x aPos %ld aLength %d aSrc %x threadId %x aOffset %x aFlags %x" */
1.412 + ECBaseExtProxyDriveWrite1,
1.413 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::Write1() r %d" */
1.414 + ECBaseExtProxyDriveWrite1Ret,
1.415 +
1.416 + /** @SYMTraceFormatString "+CLocalProxyDrive::Write1() this %x aPos %ld aLength %d aSrc %x threadId %x aOffset %x aFlags %x" */
1.417 + ECLocalProxyDriveWrite1,
1.418 + /** @SYMTraceFormatString "-CLocalProxyDrive::Write1() r %d" */
1.419 + ECLocalProxyDriveWrite1Ret,
1.420 +
1.421 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::Write2() this %x aPos %ld aLength %d aSrc %x threadId %x aOffset %x" */
1.422 + ECBaseExtProxyDriveWrite2,
1.423 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::Write2() r %d" */
1.424 + ECBaseExtProxyDriveWrite2Ret,
1.425 +
1.426 + /** @SYMTraceFormatString "+CLocalProxyDrive::Write2() this %x aPos %ld aLength %d aSrc %x threadId %x aOffset %x" */
1.427 + ECLocalProxyDriveWrite2,
1.428 + /** @SYMTraceFormatString "-CLocalProxyDrive::Write2() r %d" */
1.429 + ECLocalProxyDriveWrite2Ret,
1.430 +
1.431 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::Write3() this %x aPos %ld aLength %d aSrc %x" */
1.432 + ECBaseExtProxyDriveWrite3,
1.433 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::Write3() r %d" */
1.434 + ECBaseExtProxyDriveWrite3Ret,
1.435 +
1.436 + /** @SYMTraceFormatString "+CLocalProxyDrive::Write3() this %x aPos %ld aLength %d aSrc %x" */
1.437 + ECLocalProxyDriveWrite3,
1.438 + /** @SYMTraceFormatString "-CLocalProxyDrive::Write3() r %d" */
1.439 + ECLocalProxyDriveWrite3Ret,
1.440 +
1.441 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::Dismounted() this %x" */
1.442 + ECBaseExtProxyDriveDismounted,
1.443 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::Dismounted() r %d" */
1.444 + ECBaseExtProxyDriveDismountedRet,
1.445 +
1.446 + /** @SYMTraceFormatString "+CLocalProxyDrive::Dismounted() this %x" */
1.447 + ECLocalProxyDriveDismounted,
1.448 + /** @SYMTraceFormatString "-CLocalProxyDrive::Dismounted() r %d" */
1.449 + ECLocalProxyDriveDismountedRet,
1.450 +
1.451 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::Enlarge() this %x aLength %d" */
1.452 + ECBaseExtProxyDriveEnlarge,
1.453 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::Enlarge() r %d" */
1.454 + ECBaseExtProxyDriveEnlargeRet,
1.455 +
1.456 + /** @SYMTraceFormatString "+CLocalProxyDrive::Enlarge() this %x aLength %d" */
1.457 + ECLocalProxyDriveEnlarge,
1.458 + /** @SYMTraceFormatString "-CLocalProxyDrive::Enlarge() r %d" */
1.459 + ECLocalProxyDriveEnlargeRet,
1.460 +
1.461 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::ReduceSize() this %x aPos %d aLength %d" */
1.462 + ECBaseExtProxyDriveReduceSize,
1.463 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::ReduceSize() r %d" */
1.464 + ECBaseExtProxyDriveReduceSizeRet,
1.465 +
1.466 + /** @SYMTraceFormatString "+CLocalProxyDrive::ReduceSize() this %x aPos %d aLength %d" */
1.467 + ECLocalProxyDriveReduceSize,
1.468 + /** @SYMTraceFormatString "-CLocalProxyDrive::ReduceSize() r %d" */
1.469 + ECLocalProxyDriveReduceSizeRet,
1.470 +
1.471 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::Caps() this %x" */
1.472 + ECBaseExtProxyDriveCaps,
1.473 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::Caps() r %d" */
1.474 + ECBaseExtProxyDriveCapsRet,
1.475 +
1.476 + /** @SYMTraceFormatString "+CLocalProxyDrive::Caps() this %x" */
1.477 + ECLocalProxyDriveCaps,
1.478 + /** @SYMTraceFormatString "-CLocalProxyDrive::Caps() r %d" */
1.479 + ECLocalProxyDriveCapsRet,
1.480 +
1.481 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::Format1() this %x" */
1.482 + ECBaseExtProxyDriveFormat1,
1.483 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::Format1() r %d iFormatIsCurrent %d i512ByteSectorsFormatted %d iMaxBytesPerFormat %d" */
1.484 + ECBaseExtProxyDriveFormat1Ret,
1.485 +
1.486 + /** @SYMTraceFormatString "+CLocalProxyDrive::Format1() this %x" */
1.487 + ECLocalProxyDriveFormat1,
1.488 + /** @SYMTraceFormatString "-CLocalProxyDrive::Format1() r %d iFormatIsCurrent %d i512ByteSectorsFormatted %d iMaxBytesPerFormat %d" */
1.489 + ECLocalProxyDriveFormat1Ret,
1.490 +
1.491 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::Format2() this %x aPos %ld aLength %d" */
1.492 + ECBaseExtProxyDriveFormat2,
1.493 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::Format2() r %d" */
1.494 + ECBaseExtProxyDriveFormat2Ret,
1.495 +
1.496 + /** @SYMTraceFormatString "+CLocalProxyDrive::Format2() this %x aPos %ld aLength %d" */
1.497 + ECLocalProxyDriveFormat2,
1.498 + /** @SYMTraceFormatString "-CLocalProxyDrive::Format2() r %d" */
1.499 + ECLocalProxyDriveFormat2Ret,
1.500 +
1.501 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::SetMountInfo() this %x" */
1.502 + ECBaseExtProxyDriveSetMountInfo,
1.503 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::SetMountInfo() r %d" */
1.504 + ECBaseExtProxyDriveSetMountInfoRet,
1.505 +
1.506 + /** @SYMTraceFormatString "+CLocalProxyDrive::SetMountInfo() this %x" */
1.507 + ECLocalProxyDriveSetMountInfo,
1.508 + /** @SYMTraceFormatString "-CLocalProxyDrive::SetMountInfo() r %d" */
1.509 + ECLocalProxyDriveSetMountInfoRet,
1.510 +
1.511 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::ForceRemount() this %x" */
1.512 + ECBaseExtProxyDriveForceRemount,
1.513 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::ForceRemount() r %d" */
1.514 + ECBaseExtProxyDriveForceRemountRet,
1.515 +
1.516 + /** @SYMTraceFormatString "+CLocalProxyDrive::ForceRemount() this %x" */
1.517 + ECLocalProxyDriveForceRemount,
1.518 + /** @SYMTraceFormatString "-CLocalProxyDrive::ForceRemount() r %d" */
1.519 + ECLocalProxyDriveForceRemountRet,
1.520 +
1.521 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::Unlock() this %x aPassword %d" */
1.522 + ECBaseExtProxyDriveUnlock,
1.523 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::Unlock() r %d" */
1.524 + ECBaseExtProxyDriveUnlockRet,
1.525 +
1.526 + /** @SYMTraceFormatString "+CLocalProxyDrive::Unlock() this %x aPassword %d" */
1.527 + ECLocalProxyDriveUnlock,
1.528 + /** @SYMTraceFormatString "-CLocalProxyDrive::Unlock() r %d" */
1.529 + ECLocalProxyDriveUnlockRet,
1.530 +
1.531 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::Lock() this %x aPassword %d" */
1.532 + ECBaseExtProxyDriveLock,
1.533 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::Lock() r %d" */
1.534 + ECBaseExtProxyDriveLockRet,
1.535 +
1.536 + /** @SYMTraceFormatString "+CLocalProxyDrive::Lock() this %x aPassword %d" */
1.537 + ECLocalProxyDriveLock,
1.538 + /** @SYMTraceFormatString "-CLocalProxyDrive::Lock() r %d" */
1.539 + ECLocalProxyDriveLockRet,
1.540 +
1.541 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::Clear() this %x" */
1.542 + ECBaseExtProxyDriveClear,
1.543 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::Clear() r %d" */
1.544 + ECBaseExtProxyDriveClearRet,
1.545 +
1.546 + /** @SYMTraceFormatString "+CLocalProxyDrive::Clear() this %x" */
1.547 + ECLocalProxyDriveClear,
1.548 + /** @SYMTraceFormatString "-CLocalProxyDrive::Clear() r %d" */
1.549 + ECLocalProxyDriveClearRet,
1.550 +
1.551 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::ErasePassword() this %x" */
1.552 + ECBaseExtProxyDriveErasePassword,
1.553 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::ErasePassword() r %d" */
1.554 + ECBaseExtProxyDriveErasePasswordRet,
1.555 +
1.556 + /** @SYMTraceFormatString "+CLocalProxyDrive::ErasePassword() this %x" */
1.557 + ECLocalProxyDriveErasePassword,
1.558 + /** @SYMTraceFormatString "-CLocalProxyDrive::ErasePassword() r %d" */
1.559 + ECLocalProxyDriveErasePasswordRet,
1.560 +
1.561 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::DeleteNotify() this %x aPos %ld aLength %d" */
1.562 + ECBaseExtProxyDriveDeleteNotify,
1.563 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::DeleteNotify() r %d" */
1.564 + ECBaseExtProxyDriveDeleteNotifyRet,
1.565 +
1.566 + /** @SYMTraceFormatString "+CLocalProxyDrive::DeleteNotify() this %x aPos %ld aLength %d" */
1.567 + ECLocalProxyDriveDeleteNotify,
1.568 + /** @SYMTraceFormatString "-CLocalProxyDrive::DeleteNotify() r %d" */
1.569 + ECLocalProxyDriveDeleteNotifyRet,
1.570 +
1.571 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::GetLastErrorInfo() this %x" */
1.572 + ECBaseExtProxyDriveGetLastErrorInfo,
1.573 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::GetLastErrorInfo() r %d" */
1.574 + ECBaseExtProxyDriveGetLastErrorInfoRet,
1.575 +
1.576 + /** @SYMTraceFormatString "+CLocalProxyDrive::GetLastErrorInfo() this %x" */
1.577 + ECLocalProxyDriveGetLastErrorInfo,
1.578 + /** @SYMTraceFormatString "-CLocalProxyDrive::GetLastErrorInfo() r %d" */
1.579 + ECLocalProxyDriveGetLastErrorInfoRet,
1.580 +
1.581 + /** @SYMTraceFormatString "+CBaseExtProxyDrive::GetInterface() this %x aInterfaceId %d aInput %x" */
1.582 + ECBaseExtProxyDriveGetInterface,
1.583 + /** @SYMTraceFormatString "-CBaseExtProxyDrive::GetInterface() r %d aInterface %x" */
1.584 + ECBaseExtProxyDriveGetInterfaceRet,
1.585 +
1.586 + /** @SYMTraceFormatString "+CLocalProxyDrive::GetInterface() this %x aInterfaceId %d aInput %x" */
1.587 + ECLocalProxyDriveGetInterface,
1.588 + /** @SYMTraceFormatString "-CLocalProxyDrive::GetInterface() r %d aInterface %x" */
1.589 + ECLocalProxyDriveGetInterfaceRet,
1.590 +
1.591 +
1.592 +
1.593 +
1.594 + /**
1.595 + Provided to allow the following compile time assert.
1.596 + */
1.597 + EFormatIdHighWaterMark,
1.598 + };
1.599 + __ASSERT_COMPILE(EFormatIdHighWaterMark <= (UTF::KMaxFormatId + 1));
1.600 +
1.601 +
1.602 +
1.603 + } // end of namespace UTraceModuleFileSys
1.604 +
1.605 +
1.606 +#endif // UTRACEEFILE_H