1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/kernelhwsrv/userlibandfileserver/fileserver/inc/utraceefsrv.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,995 @@
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 client-side 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 UTRACEEFSRV_H
1.29 +#define UTRACEEFSRV_H
1.30 +
1.31 +
1.32 +#include <f32tracedef.h>
1.33 +
1.34 +#define MODULEUID EF32TraceUidEfsrv
1.35 +
1.36 +
1.37 +/**
1.38 +This defines trace attributes to be used by trace points within the efsrv.dll executable.
1.39 +*/
1.40 +namespace UTraceModuleEfsrv
1.41 + {
1.42 +
1.43 + /**
1.44 + @SYMTraceFormatCategory EF32TraceUidEfsrv
1.45 + */
1.46 +
1.47 +
1.48 +
1.49 + /**
1.50 + @SYMTraceFormatId
1.51 + */
1.52 + enum TFormatId
1.53 + {
1.54 + EReserved = UTF::KInitialClientFormat-1,
1.55 +
1.56 + /** @SYMTraceFormatString "+RFile::Replace() sess %x mode %x FileName %*S" */
1.57 + EFileReplace,
1.58 + /** @SYMTraceFormatString "-RFile::Replace() r %d subs %x" */
1.59 + EFileReplaceReturn,
1.60 +
1.61 + /** @SYMTraceFormatString "+RFile::Create() sess %x mode %x FileName %*S" */
1.62 + EFileCreate,
1.63 + /** @SYMTraceFormatString "-RFile::Create() r %d subs %x" */
1.64 + EFileCreateReturn,
1.65 +
1.66 + /** @SYMTraceFormatString "+RFile::Open() sess %x mode %x FileName %*S" */
1.67 + EFileOpen,
1.68 + /** @SYMTraceFormatString "-RFile::Open() r %d subs %x" */
1.69 + EFileOpenReturn,
1.70 +
1.71 + /** @SYMTraceFormatString "+RFile::Adopt() sess %x subs %x" */
1.72 + EFileAdopt,
1.73 + /** @SYMTraceFormatString "-RFile::Adopt() r %d sess %x subs %x" */
1.74 + EFileAdoptReturn,
1.75 +
1.76 + /** @SYMTraceFormatString "+RFile::AdoptFromServer() sess %x subs %x" */
1.77 + EFileAdoptFromServer,
1.78 + /** @SYMTraceFormatString "-RFile::AdoptFromServer() r %d sess %x subs %x" */
1.79 + EFileAdoptFromServerReturn,
1.80 +
1.81 + /** @SYMTraceFormatString "+RFile::AdoptFromClient() sess %x subs %x aFsHandleIndex %d aFileHandleIndex %d " */
1.82 + EFileAdoptFromClient,
1.83 + /** @SYMTraceFormatString "-RFile::AdoptFromClient() r %d sess %x subs %x" */
1.84 + EFileAdoptFromClientReturn,
1.85 +
1.86 + /** @SYMTraceFormatString "+RFile::AdoptFromCreator() subs %x aFsHandleIndex %d aFileHandleIndex %d" */
1.87 + EFileAdoptFromCreator,
1.88 + /** @SYMTraceFormatString "-RFile::AdoptFromCreator() r %d sess %x subs %x" */
1.89 + EFileAdoptFromCreatorReturn,
1.90 +
1.91 + /** @SYMTraceFormatString "+RFile::Duplicate() sess %x subs %x aType %d" */
1.92 + EFileDuplicate,
1.93 + /** @SYMTraceFormatString "-RFile::Duplicate() r %d sess %x subs %x" */
1.94 + EFileDuplicateReturn,
1.95 +
1.96 +
1.97 + /** @SYMTraceFormatString "+RFile::TransferToServer() sess %x subs %x aFsHandleIndex %d aFileHandleIndex %d" */
1.98 + EFileTransferToServer,
1.99 + /** @SYMTraceFormatString "-RFile::TransferToServer() r %d" */
1.100 + EFileTransferToServerReturn,
1.101 +
1.102 + /** @SYMTraceFormatString "+RFile::TransferToClient() sess %x subs %x aFileHandleIndex %d" */
1.103 + EFileTransferToClient,
1.104 + /** @SYMTraceFormatString "-RFile::TransferToClient() r %d" */
1.105 + EFileTransferToClientReturn,
1.106 +
1.107 + /** @SYMTraceFormatString "+RFile::TransferToProcess() sess %x subs %x aFsHandleIndex %d aFileHandleIndex %d" */
1.108 + EFileTransferToProcess,
1.109 + /** @SYMTraceFormatString "-RFile::TransferToProcess() r %d" */
1.110 + EFileTransferToProcessReturn,
1.111 +
1.112 +
1.113 + /** @SYMTraceFormatString "+RFile::Name() sess %x subs %x" */
1.114 + EFileName,
1.115 + /** @SYMTraceFormatString "-RFile::Name() r %d aName %*S" */
1.116 + EFileNameReturn,
1.117 +
1.118 + /** @SYMTraceFormatString "+RFile::FullName() sess %x subs %x" */
1.119 + EFileFullName,
1.120 + /** @SYMTraceFormatString "-RFile::FullName() r %d aName %*S" */
1.121 + EFileFullNameReturn,
1.122 +
1.123 +
1.124 +
1.125 + /** @SYMTraceFormatString "+RFile::Temp() sess %x aPath %*S aMode %x" */
1.126 + EFileTemp,
1.127 + /** @SYMTraceFormatString "-RFile::Temp() r %d subs %x aName %*S" */
1.128 + EFileTempReturn,
1.129 +
1.130 +
1.131 + /** @SYMTraceFormatString "+RFile::Write1() sess %x subs %x len %d" */
1.132 + EFileWrite1,
1.133 + /** @SYMTraceFormatString "-RFile::Write1() r %d" */
1.134 + EFileWrite1Return,
1.135 +
1.136 + /** @SYMTraceFormatString "+RFile::Write2() sess %x subs %x len %d status %x" */
1.137 + EFileWrite2,
1.138 + /** @SYMTraceFormatString "-RFile::Write2()" */
1.139 + EFileWrite2Return,
1.140 +
1.141 + /** @SYMTraceFormatString "+RFile::Write3() sess %x subs %x pos %ld len %d" */
1.142 + EFileWrite3,
1.143 + /** @SYMTraceFormatString "-RFile::Write3() r %d" */
1.144 + EFileWrite3Return,
1.145 +
1.146 + /** @SYMTraceFormatString "+RFile::Write4() sess %x subs %x pos %ld len %d status %x" */
1.147 + EFileWrite4,
1.148 + /** @SYMTraceFormatString "-RFile::Write4()" */
1.149 + EFileWrite4Return,
1.150 +
1.151 +
1.152 +
1.153 +
1.154 + /** @SYMTraceFormatString "+RFile::Read1() sess %x subs %x maxlen %d" */
1.155 + EFileRead1,
1.156 + /** @SYMTraceFormatString "-RFile::Read1() r %d len %d" */
1.157 + EFileRead1Return,
1.158 +
1.159 + /** @SYMTraceFormatString "+RFile::Read2() sess %x subs %x maxlen %d status %x" */
1.160 + EFileRead2,
1.161 + /** @SYMTraceFormatString "-RFile::Read2()" */
1.162 + EFileRead2Return,
1.163 +
1.164 + /** @SYMTraceFormatString "+RFile::Read3() sess %x subs %x aPos %ld maxlen %d" */
1.165 + EFileRead3,
1.166 + /** @SYMTraceFormatString "-RFile::Read3() r %d len %d" */
1.167 + EFileRead3Return,
1.168 +
1.169 + /** @SYMTraceFormatString "+RFile::Read4() sess %x subs %x aPos %ld maxlen %d status %x" */
1.170 + EFileRead4,
1.171 + /** @SYMTraceFormatString "-RFile::Read4()" */
1.172 + EFileRead4Return,
1.173 +
1.174 +
1.175 +
1.176 +
1.177 +
1.178 + /** @SYMTraceFormatString "+RFile::Lock() sess %x subs %x aPos %ld aLength %d" */
1.179 + EFileLock,
1.180 + /** @SYMTraceFormatString "-RFile::Lock() r %d" */
1.181 + EFileLockReturn,
1.182 +
1.183 + /** @SYMTraceFormatString "+RFile::UnLock() sess %x subs %x aPos %ld aLength %d" */
1.184 + EFileUnLock,
1.185 + /** @SYMTraceFormatString "-RFile::UnLock() r %d" */
1.186 + EFileUnLockReturn,
1.187 +
1.188 + /** @SYMTraceFormatString "+RFile::Seek() sess %x subs %x aMode %x aPos %ld" */
1.189 + EFileSeek,
1.190 + /** @SYMTraceFormatString "-RFile::Seek() r %d" */
1.191 + EFileSeekReturn,
1.192 +
1.193 + /** @SYMTraceFormatString "+RFile::Flush() sess %x subs %x status %x" */
1.194 + EFileFlush,
1.195 + /** @SYMTraceFormatString "-RFile::Flush() r %d" */
1.196 + EFileFlushReturn,
1.197 +
1.198 + /** @SYMTraceFormatString "+RFile::Size1() sess %x subs %x" */
1.199 + EFileSize,
1.200 + /** @SYMTraceFormatString "-RFile::Size1() r %d aSize %d" */
1.201 + EFileSizeReturn,
1.202 +
1.203 + /** @SYMTraceFormatString "+RFile::Size2() sess %x subs %x" */
1.204 + EFileSize2,
1.205 + /** @SYMTraceFormatString "-RFile::Size2() r %d aSize %ld" */
1.206 + EFileSize2Return,
1.207 +
1.208 + /** @SYMTraceFormatString "+RFile::SetSize() sess %x subs %x aSize %ld" */
1.209 + EFileSetSize,
1.210 + /** @SYMTraceFormatString "-RFile::SetSize() r %d" */
1.211 + EFileSetSizeReturn,
1.212 +
1.213 + /** @SYMTraceFormatString "+RFile::Att() sess %x subs %x" */
1.214 + EFileAtt,
1.215 + /** @SYMTraceFormatString "-RFile::Att() r %d aVal %x" */
1.216 + EFileAttReturn,
1.217 +
1.218 + /** @SYMTraceFormatString "+RFile::SetAtt() sess %x subs %x aSetAttMask %x aClearAttMask %x" */
1.219 + EFileSetAtt,
1.220 + /** @SYMTraceFormatString "-RFile::SetAtt() r %d" */
1.221 + EFileSetAttReturn,
1.222 +
1.223 + /** @SYMTraceFormatString "+RFile::Modified() sess %x subs %x" */
1.224 + EFileModified,
1.225 + /** @SYMTraceFormatString "-RFile::Modified() r %d aTime %lx" */
1.226 + EFileModifiedReturn,
1.227 +
1.228 + /** @SYMTraceFormatString "+RFile::SetModified() sess %x subs %x aTime %lx" */
1.229 + EFileSetModified,
1.230 + /** @SYMTraceFormatString "-RFile::SetModified() r %d" */
1.231 + EFileSetModifiedReturn,
1.232 +
1.233 + /** @SYMTraceFormatString "+RFile::Set() sess %x subs %x aTime %lx aSetAttMask %x aClearAttMask %x" */
1.234 + EFileSet,
1.235 + /** @SYMTraceFormatString "-RFile::Set() r %d" */
1.236 + EFileSetReturn,
1.237 +
1.238 + /** @SYMTraceFormatString "+RFile::ChangeMode() sess %x subs %x aNewMode %x" */
1.239 + EFileChangeMode,
1.240 + /** @SYMTraceFormatString "-RFile::ChangeMode() r %d" */
1.241 + EFileChangeModeReturn,
1.242 +
1.243 + /** @SYMTraceFormatString "+RFile::Rename() sess %x subs %x aNewName %*S" */
1.244 + EFileRename,
1.245 + /** @SYMTraceFormatString "-RFile::Rename() r %d" */
1.246 + EFileRenameReturn,
1.247 +
1.248 + /** @SYMTraceFormatString "+RFile::Drive() sess %x subs %x" */
1.249 + EFileDrive,
1.250 + /** @SYMTraceFormatString "-RFile::Drive() r %d driveAtt %x mediaAtt %x type %x" */
1.251 + EFileDriveReturn,
1.252 +
1.253 + /** @SYMTraceFormatString "+RFile::Clamp() sess %x subs %x" */
1.254 + EFileClamp,
1.255 + /** @SYMTraceFormatString "-RFile::Clamp() r %d" */
1.256 + EFileClampReturn,
1.257 +
1.258 + /** @SYMTraceFormatString "+RFile::BlockMap() sess %x subs %x aStartPos %ld aEndPos %ld aBlockMapusage %d" */
1.259 + EFileBlockMap,
1.260 + /** @SYMTraceFormatString "-RFile::BlockMap() r %d" */
1.261 + EFileBlockMapReturn,
1.262 +
1.263 + /** @SYMTraceFormatString "+RFile::Close() sess %x subs %x" */
1.264 + EFileClose,
1.265 + /** @SYMTraceFormatString "-RFile::Close()" */
1.266 + EFileCloseReturn,
1.267 +
1.268 +
1.269 +
1.270 + /** @SYMTraceFormatString "+RFS::DriveToChar() aDrive %d" */
1.271 + EFsDriveToChar,
1.272 + /** @SYMTraceFormatString "-RFs::DriveToChar() r %d aChar %c" */
1.273 + EFsDriveToCharReturn,
1.274 + /** @SYMTraceFormatString "+RFs::IsRomAddress() aPtr %x" */
1.275 + EFsIsRomAddress,
1.276 + /** @SYMTraceFormatString "-RFS::IsRomAddress() r %d" */
1.277 + EFsIsRomAddressReturn,
1.278 + /** @SYMTraceFormatString "+RFs::GetSystemDrive()" */
1.279 + EFsGetSystemDrive,
1.280 + /** @SYMTraceFormatString "-RFs::GetSystemDrive() r %d" */
1.281 + EFsGetSystemDriveReturn,
1.282 + /** @SYMTraceFormatString "+RFs::GetSystemDriveChar()" */
1.283 + EFsGetSystemDriveChar,
1.284 + /** @SYMTraceFormatString "-RFs::GetSystemDriveChar() r %c" */
1.285 + EFsGetSystemDriveCharReturn,
1.286 + /** @SYMTraceFormatString "+RFs::SetSystemDrive() sess %x" */
1.287 + EFsSetSystemDrive,
1.288 + /** @SYMTraceFormatString "-RFs::SetSystemDrive() r %d" */
1.289 + EFsSetSystemDriveReturn,
1.290 + /** @SYMTraceFormatString "+RFs::Connect()" */
1.291 + EFsConnect,
1.292 + /** @SYMTraceFormatString "-RFs::Connect() r %d sess %x" */
1.293 + EFsConnectReturn,
1.294 + /** @SYMTraceFormatString "+RFs::SetSessionToPrivate() sess %x" */
1.295 + EFsSetSessionToPrivate,
1.296 + /** @SYMTraceFormatString "-RFs::SetSessionToPrivate() r %d" */
1.297 + EFsSetSessionToPrivateReturn,
1.298 + /** @SYMTraceFormatString "+RFs::PrivatePath() sess %x" */
1.299 + EFsPrivatePath,
1.300 + /** @SYMTraceFormatString "-RFs::PrivatePath() r %d aPath %*S" */
1.301 + EFsPrivatePathReturn,
1.302 + /** @SYMTraceFormatString "+RFs::CreatePrivatePath() sess %x aDrive %d" */
1.303 + EFsCreatePrivatePath,
1.304 + /** @SYMTraceFormatString "-RFs::CreatePrivatePath() r %d" */
1.305 + EFsCreatePrivatePathReturn,
1.306 + /** @SYMTraceFormatString "+RFs::Version() sess %x" */
1.307 + EFsVersion,
1.308 + /** @SYMTraceFormatString "-RFs::Version() iMajor %d iMinor %d iBuild %d" */
1.309 + EFsVersionReturn,
1.310 + /** @SYMTraceFormatString "+RFs::AddFileSystem() sess %x aFileName %*S" */
1.311 + EFsAddFileSystem,
1.312 + /** @SYMTraceFormatString "-RFs::AddFileSystem() r %d" */
1.313 + EFsAddFileSystemReturn,
1.314 + /** @SYMTraceFormatString "+RFs::RemoveFileSystem() sess %x aFileName %*S" */
1.315 + EFsRemoveFileSystem,
1.316 + /** @SYMTraceFormatString "-RFs::RemoveFileSystem() r %d" */
1.317 + EFsRemoveFileSystemReturn,
1.318 + /** @SYMTraceFormatString "+RFs::MountFileSystem1() sess %x aFileSystemName %*S aDrive %d" */
1.319 + EFsMountFileSystem1,
1.320 + /** @SYMTraceFormatString "-RFs::MountFileSystem1() r %d" */
1.321 + EFsMountFileSystem1Return,
1.322 + /** @SYMTraceFormatString "+RFs::MountFileSystem2() sess %x aFileSystemName %*S aDrive %d aIsSync %d" */
1.323 + EFsMountFileSystem2,
1.324 + /** @SYMTraceFormatString "-RFs::MountFileSystem2() r %d" */
1.325 + EFsMountFileSystem2Return,
1.326 + /** @SYMTraceFormatString "+RFs::MountFileSystem3() sess %x aFileSystemName %*S aExtensionName %*S aDrive %d" */
1.327 + EFsMountFileSystem3,
1.328 + /** @SYMTraceFormatString "-RFs::MountFileSystem3() r %d" */
1.329 + EFsMountFileSystem3Return,
1.330 + /** @SYMTraceFormatString "+RFs::MountFileSystem4() sess %x aFileSystemName %*S aExtensionName %*S aDrive %d aIsSync %d" */
1.331 + EFsMountFileSystem4,
1.332 + /** @SYMTraceFormatString "-RFs::MountFileSystem4() r %d" */
1.333 + EFsMountFileSystem4Return,
1.334 + /** @SYMTraceFormatString "+RFs::MountFileSystemAndScan1() sess %x aFileSystemName %*S aDrive %d" */
1.335 + EFsMountFileSystemAndScan1,
1.336 + /** @SYMTraceFormatString "-RFs::MountFileSystemAndScan1() r %d" */
1.337 + EFsMountFileSystemAndScan1Return,
1.338 + /** @SYMTraceFormatString "+RFs::MountFileSystemAndScan2() sess %x aFileSystemName %*S aExtensionName %*S aDrive %d " */
1.339 + EFsMountFileSystemAndScan2,
1.340 + /** @SYMTraceFormatString "-RFs::MountFileSystemAndScan2() r %d aIsMountSuccess %d" */
1.341 + EFsMountFileSystemAndScan2Return,
1.342 + /** @SYMTraceFormatString "+RFs::DismountFileSystem() sess %x aFileSystemName %*S aDrive %d" */
1.343 + EFsDismountFileSystem,
1.344 + /** @SYMTraceFormatString "-RFs::DismountFileSystem() r %d" */
1.345 + EFsDismountFileSystemReturn,
1.346 + /** @SYMTraceFormatString "+RFs::FileSystemName() sess %x aDrive %d" */
1.347 + EFsFileSystemName,
1.348 + /** @SYMTraceFormatString "-RFs::FileSystemName() r %d aName %*S" */
1.349 + EFsFileSystemNameReturn,
1.350 + /** @SYMTraceFormatString "+RFs::AddExtension() sess %x aFileName %*S" */
1.351 + EFsAddExtension,
1.352 + /** @SYMTraceFormatString "-RFs::AddExtension() r %d" */
1.353 + EFsAddExtensionReturn,
1.354 + /** @SYMTraceFormatString "+RFs::MountExtension() sess %x aExtensionName %*S aDrive %d" */
1.355 + EFsMountExtension,
1.356 + /** @SYMTraceFormatString "-RFs::MountExtension() r %d" */
1.357 + EFsMountExtensionReturn,
1.358 + /** @SYMTraceFormatString "+RFs::DismountExtension() sess %x aExtensionName %*S aDrive %d" */
1.359 + EFsDismountExtension,
1.360 + /** @SYMTraceFormatString "-RFs::DismountExtension() r %d" */
1.361 + EFsDismountExtensionReturn,
1.362 + /** @SYMTraceFormatString "+RFs::RemoveExtension() sess %x aExtensionName %*S" */
1.363 + EFsRemoveExtension,
1.364 + /** @SYMTraceFormatString "-RFs::RemoveExtension() r %d" */
1.365 + EFsRemoveExtensionReturn,
1.366 + /** @SYMTraceFormatString "+RFs::ExtensionName() sess %x aExtensionName %*S aDrive %d aPos %d" */
1.367 + EFsExtensionName,
1.368 + /** @SYMTraceFormatString "-RFs::ExtensionName() r %d" */
1.369 + EFsExtensionNameReturn,
1.370 + /** @SYMTraceFormatString "+RFs::RemountDrive() sess %x aDrive %d aMountInfo %x aFlags %x" */
1.371 + EFsRemountDrive,
1.372 + /** @SYMTraceFormatString "-RFs::RemountDrive() r %d" */
1.373 + EFsRemountDriveReturn,
1.374 + /** @SYMTraceFormatString "+RFs::NotifyChange1() sess %x aType %x status %x" */
1.375 + EFsNotifyChange1,
1.376 + /** @SYMTraceFormatString "-RFs::NotifyChange1() r %d" */
1.377 + EFsNotifyChange1Return,
1.378 + /** @SYMTraceFormatString "+RFs::NotifyChange2() sess %x aType %x status %x aPathName %*S" */
1.379 + EFsNotifyChange2,
1.380 + /** @SYMTraceFormatString "-RFs::NotifyChange2() r %d" */
1.381 + EFsNotifyChange2Return,
1.382 + /** @SYMTraceFormatString "+RFs::NotifyChangeCancel1() sess %x" */
1.383 + EFsNotifyChangeCancel1,
1.384 + /** @SYMTraceFormatString "-RFs::NotifyChangeCancel1() r %d" */
1.385 + EFsNotifyChangeCancel1Return,
1.386 + /** @SYMTraceFormatString "+RFs::NotifyChangeCancel2() sess %x status %x" */
1.387 + EFsNotifyChangeCancel2,
1.388 + /** @SYMTraceFormatString "-RFs::NotifyChangeCancel2() r %d" */
1.389 + EFsNotifyChangeCancel2Return,
1.390 + /** @SYMTraceFormatString "+RFs::NotifyDiskSpace() sess %x aThreshold %ld aDrive %d status %x" */
1.391 + EFsNotifyDiskSpace,
1.392 + /** @SYMTraceFormatString "-RFs::NotifyDiskSpace() r %d" */
1.393 + EFsNotifyDiskSpaceReturn,
1.394 + /** @SYMTraceFormatString "+RFs::NotifyDiskSpaceCancel1() sess %x status %x" */
1.395 + EFsNotifyDiskSpaceCancel1,
1.396 + /** @SYMTraceFormatString "-RFs::NotifyDiskSpaceCancel1() r %d" */
1.397 + EFsNotifyDiskSpaceCancel1Return,
1.398 + /** @SYMTraceFormatString "+RFs::NotifyDiskSpaceCancel2() sess %x" */
1.399 + EFsNotifyDiskSpaceCancel2,
1.400 + /** @SYMTraceFormatString "-RFs::NotifyDiskSpaceCancel2() r %d" */
1.401 + EFsNotifyDiskSpaceCancel2Return,
1.402 + /** @SYMTraceFormatString "+RFs::DriveList1() sess %x" */
1.403 + EFsDriveList1,
1.404 + /** @SYMTraceFormatString "-RFs::DriveList1() r %d" */
1.405 + EFsDriveList1Return,
1.406 + /** @SYMTraceFormatString "+RFs::DriveList2() sess %x aFlags %x" */
1.407 + EFsDriveList2,
1.408 + /** @SYMTraceFormatString "-RFs::DriveList2() r %d" */
1.409 + EFsDriveList2Return,
1.410 + /** @SYMTraceFormatString "+RFs::Drive() sess %x aDrive %d" */
1.411 + EFsDrive,
1.412 + /** @SYMTraceFormatString "-RFs::Drive() r %d driveAtt %x mediaAtt %x type %x" */
1.413 + EFsDriveReturn,
1.414 + /** @SYMTraceFormatString "+RFs::Volume1() sess %x aDrive %d" */
1.415 + EFsVolume1,
1.416 + /** @SYMTraceFormatString "-RFs::Volume1() r %d iUniqueID %x iSize %ld iFree %ld iFileCacheFlags %x" */
1.417 + EFsVolume1Return,
1.418 + /** @SYMTraceFormatString "+RFs::Volume2() sess %x aDrive %d status %x" */
1.419 + EFsVolume2,
1.420 + /** @SYMTraceFormatString "-RFs::Volume2() r %d" */
1.421 + EFsVolume2Return,
1.422 + /** @SYMTraceFormatString "+RFs::SetVolumeLabel() sess %x aName %*S aDrive %d" */
1.423 + EFsSetVolumeLabel,
1.424 + /** @SYMTraceFormatString "-RFs::SetVolumeLabel() r %d" */
1.425 + EFsSetVolumeLabelReturn,
1.426 + /** @SYMTraceFormatString "+RFs::Subst() sess %x aPath %*S aDrive %d" */
1.427 + EFsSubst,
1.428 + /** @SYMTraceFormatString "-RFs::Subst() r %d" */
1.429 + EFsSubstReturn,
1.430 + /** @SYMTraceFormatString "+RFs::SetSubst() sess %x aPath %%S aDrive %d" */
1.431 + EFsSetSubst,
1.432 + /** @SYMTraceFormatString "-RFs::SetSubst() r %d" */
1.433 + EFsSetSubstReturn,
1.434 + /** @SYMTraceFormatString "+RFs::RealName() sess %x aName %*S" */
1.435 + EFsRealName,
1.436 + /** @SYMTraceFormatString "-RFs::RealName() r %d aResult %*S" */
1.437 + EFsRealNameReturn,
1.438 + /** @SYMTraceFormatString "+RFs::GetMediaSerialNumber() sess %x aDrive %d" */
1.439 + EFsGetMediaSerialNumber,
1.440 + /** @SYMTraceFormatString "-RFs::GetMediaSerialNumber() r %d aSerialNum %*x" */
1.441 + EFsGetMediaSerialNumberReturn,
1.442 + /** @SYMTraceFormatString "+RFs::SessionPath() sess %x" */
1.443 + EFsSessionPath,
1.444 + /** @SYMTraceFormatString "-RFs::SessionPath() r %d aPath %*S" */
1.445 + EFsSessionPathReturn,
1.446 + /** @SYMTraceFormatString "+RFs::SetSessionPath() sess %x aPath %*S" */
1.447 + EFsSetSessionPath,
1.448 + /** @SYMTraceFormatString "-RFs::SetSessionPath() r %d" */
1.449 + EFsSetSessionPathReturn,
1.450 + /** @SYMTraceFormatString "+RFs::MkDir() sess %x aPath %*S" */
1.451 + EFsMkDir,
1.452 + /** @SYMTraceFormatString "-RFs::MkDir() r %d" */
1.453 + EFsMkDirReturn,
1.454 + /** @SYMTraceFormatString "+RFs::MkDirAll() sess %x aPath %*S" */
1.455 + EFsMkDirAll,
1.456 + /** @SYMTraceFormatString "-RFs::MkDirAll() r %d" */
1.457 + EFsMkDirAllReturn,
1.458 + /** @SYMTraceFormatString "+RFs::RmDir() sess %x aPath %*S" */
1.459 + EFsRmDir,
1.460 + /** @SYMTraceFormatString "-RFs::RmDir() r %d" */
1.461 + EFsRmDirReturn,
1.462 + /** @SYMTraceFormatString "+RFs::GetDir1() sess %x aName %*S aUidType0 %x aUidType1 %x aUidType2 %x aKey %x" */
1.463 + EFsGetDir1,
1.464 + /** @SYMTraceFormatString "-RFs::GetDir1() r %d" */
1.465 + EFsGetDir1Return,
1.466 + /** @SYMTraceFormatString "+RFs::GetDir2() sess %x aName %*S anAttMask %x aKey %x" */
1.467 + EFsGetDir2,
1.468 + /** @SYMTraceFormatString "-RFs::GetDir2() r %d" */
1.469 + EFsGetDir2Return,
1.470 + /** @SYMTraceFormatString "+RFs::GetDir3() sess %x aName %*S anAttMask %x aKey %x" */
1.471 + EFsGetDir3,
1.472 + /** @SYMTraceFormatString "-RFs::GetDir3() r %d" */
1.473 + EFsGetDir3Return,
1.474 + /** @SYMTraceFormatString "+RFs::Parse1() sess %x aName %*S" */
1.475 + EFsParse1,
1.476 + /** @SYMTraceFormatString "-RFs::Parse1() r %d" */
1.477 + EFsParse1Return,
1.478 + /** @SYMTraceFormatString "+RFs::Parse2() sess %x aName %*S aRelated %*S" */
1.479 + EFsParse2,
1.480 + /** @SYMTraceFormatString "-RFs::Parse2() r %d" */
1.481 + EFsParse2Return,
1.482 + /** @SYMTraceFormatString "+RFs::Delete() sess %x aName %*S" */
1.483 + EFsDelete,
1.484 + /** @SYMTraceFormatString "-RFs::Delete() r %d" */
1.485 + EFsDeleteReturn,
1.486 + /** @SYMTraceFormatString "+RFs::Rename() sess %x anOldName %*S aNewName %*S" */
1.487 + EFsRename,
1.488 + /** @SYMTraceFormatString "-RFs::Rename() r %d" */
1.489 + EFsRenameReturn,
1.490 + /** @SYMTraceFormatString "+RFs::Replace() sess %x anOldName %*S aNewName %*S" */
1.491 + EFsReplace,
1.492 + /** @SYMTraceFormatString "-RFs::Replace() r %d" */
1.493 + EFsReplaceReturn,
1.494 + /** @SYMTraceFormatString "+RFs::Att() sess %x aName %*S" */
1.495 + EFsAtt,
1.496 + /** @SYMTraceFormatString "-RFs::Att() r %d aVal %x" */
1.497 + EFsAttReturn,
1.498 + /** @SYMTraceFormatString "+RFs::SetAtt() sess %x aName %*S aSetAttMask %x aClearAttMask %x" */
1.499 + EFsSetAtt,
1.500 + /** @SYMTraceFormatString "-RFs::SetAtt() r %d" */
1.501 + EFsSetAttReturn,
1.502 + /** @SYMTraceFormatString "+RFs::Modified() sess %x aName %*S" */
1.503 + EFsModified,
1.504 + /** @SYMTraceFormatString "-RFs::Modified() r %d aTime %lx" */
1.505 + EFsModifiedReturn,
1.506 + /** @SYMTraceFormatString "+RFs::SetModified() sess %x aName %*S aTime %lx" */
1.507 + EFsSetModified,
1.508 + /** @SYMTraceFormatString "-RFs::SetModified() r %d" */
1.509 + EFsSetModifiedReturn,
1.510 + /** @SYMTraceFormatString "+RFs::Entry() sess %x aName %*S" */
1.511 + EFsEntry,
1.512 + /** @SYMTraceFormatString "-RFs::Entry() r %d att %x modified %lx size %d" */
1.513 + EFsEntryReturn,
1.514 + /** @SYMTraceFormatString "+RFs::SetEntry() sess %x aName %*S aTime %lx aSetAttMask %x aClearAttMask %x" */
1.515 + EFsSetEntry,
1.516 + /** @SYMTraceFormatString "-RFs::SetEntry() r %d" */
1.517 + EFsSetEntryReturn,
1.518 + /** @SYMTraceFormatString "+RFs::ReadFileSection() sess %x aName %*S aPos %ld aLength %d" */
1.519 + EFsReadFileSection,
1.520 + /** @SYMTraceFormatString "-RFs::ReadFileSection() r %d" */
1.521 + EFsReadFileSectionReturn,
1.522 + /** @SYMTraceFormatString "+RFs::ResourceCountMarkStart() sess %x" */
1.523 + EFsResourceCountMarkStart,
1.524 + /** @SYMTraceFormatString "-RFs::ResourceCountMarkStart() r %d" */
1.525 + EFsResourceCountMarkStartReturn,
1.526 + /** @SYMTraceFormatString "+RFs::ResourceCountMarkEnd() sess %x" */
1.527 + EFsResourceCountMarkEnd,
1.528 + /** @SYMTraceFormatString "-RFs::ResourceCountMarkEnd() r %d" */
1.529 + EFsResourceCountMarkEndReturn,
1.530 + /** @SYMTraceFormatString "+RFs::ResourceCount() sess %x" */
1.531 + EFsResourceCount,
1.532 + /** @SYMTraceFormatString "-RFs::ResourceCount() r %d" */
1.533 + EFsResourceCountReturn,
1.534 + /** @SYMTraceFormatString "+RFs::CheckDisk() sess %x aDrive %*S" */
1.535 + EFsCheckDisk,
1.536 + /** @SYMTraceFormatString "-RFs::CheckDisk() r %d" */
1.537 + EFsCheckDiskReturn,
1.538 + /** @SYMTraceFormatString "+RFs::ScanDrive() sess %x aDrive %*S" */
1.539 + EFsScanDrive,
1.540 + /** @SYMTraceFormatString "-RFs::ScanDrive() r %d" */
1.541 + EFsScanDriveReturn,
1.542 + /** @SYMTraceFormatString "+RFs::GetShortName() sess %x aLongName %*S" */
1.543 + EFsGetShortName,
1.544 + /** @SYMTraceFormatString "-RFs::GetShortName() r %d aShortName %*S" */
1.545 + EFsGetShortNameReturn,
1.546 + /** @SYMTraceFormatString "+RFs::GetLongName() sess %x aShortName %*S" */
1.547 + EFsGetLongName,
1.548 + /** @SYMTraceFormatString "-RFs::GetLongName() r %d aLongName %*S" */
1.549 + EFsGetLongNameReturn,
1.550 + /** @SYMTraceFormatString "+RFs::IsFileOpen() sess %x aFileName %*S" */
1.551 + EFsIsFileOpen,
1.552 + /** @SYMTraceFormatString "-RFs::IsFileOpen() r %d anAnswer %d" */
1.553 + EFsIsFileOpenReturn,
1.554 + /** @SYMTraceFormatString "+RFs::GetNotifyUser() sess %x" */
1.555 + EFsGetNotifyUser,
1.556 + /** @SYMTraceFormatString "-RFs::GetNotifyUser() r %d" */
1.557 + EFsGetNotifyUserReturn,
1.558 + /** @SYMTraceFormatString "+RFs::SetNotifyUser() sess %x aValue %d" */
1.559 + EFsSetNotifyUser,
1.560 + /** @SYMTraceFormatString "-RFs::SetNotifyUser() r %d" */
1.561 + EFsSetNotifyUserReturn,
1.562 + /** @SYMTraceFormatString "+RFs::IsFileInRom() sess %x aFileName %*S" */
1.563 + EFsIsFileInRom,
1.564 + /** @SYMTraceFormatString "-RFs::IsFileInRom() r %d" */
1.565 + EFsIsFileInRomReturn,
1.566 + /** @SYMTraceFormatString "+RFs::IsValidName1() sess %x aFileName %*S" */
1.567 + EFsIsValidName1,
1.568 + /** @SYMTraceFormatString "-RFs::IsValidName1() r %d" */
1.569 + EFsIsValidName1Return,
1.570 + /** @SYMTraceFormatString "+RFs::IsValidName2() sess %x aFileName %*S" */
1.571 + EFsIsValidName2,
1.572 + /** @SYMTraceFormatString "-RFs::IsValidName2() r %d aBadChar %c" */
1.573 + EFsIsValidName2Return,
1.574 + /** @SYMTraceFormatString "+RFs::IsValidName3() sess %x aFileName %*S" */
1.575 + EFsIsValidName3,
1.576 + /** @SYMTraceFormatString "-RFs::IsValidName3() r %d err %d" */
1.577 + EFsIsValidName3Return,
1.578 + /** @SYMTraceFormatString "+RFs::GetDriveName() sess %x aDrive %d" */
1.579 + EFsGetDriveName,
1.580 + /** @SYMTraceFormatString "-RFs::GetDriveName() r %d aDriveName %*S" */
1.581 + EFsGetDriveNameReturn,
1.582 + /** @SYMTraceFormatString "+RFs::SetDriveName() sess %x aDrive %d aDriveName %*S" */
1.583 + EFsSetDriveName,
1.584 + /** @SYMTraceFormatString "-RFs::SetDriveName() r %d" */
1.585 + EFsSetDriveNameReturn,
1.586 + /** @SYMTraceFormatString "+RFs::LockDrive() sess %x aDrv %d aStore %d" */
1.587 + EFsLockDrive,
1.588 + /** @SYMTraceFormatString "-RFs::LockDrive() r %d" */
1.589 + EFsLockDriveReturn,
1.590 + /** @SYMTraceFormatString "+RFs::UnlockDrive() sess %x aDrv %d aStore %d" */
1.591 + EFsUnlockDrive,
1.592 + /** @SYMTraceFormatString "-RFs::UnlockDrive() r %d" */
1.593 + EFsUnlockDriveReturn,
1.594 + /** @SYMTraceFormatString "+RFs::ClearPassword() sess %x aDrv %d" */
1.595 + EFsClearPassword,
1.596 + /** @SYMTraceFormatString "-RFs::ClearPassword() r %d" */
1.597 + EFsClearPasswordReturn,
1.598 + /** @SYMTraceFormatString "+RFs::ErasePassword() sess %x aDrv %d" */
1.599 + EFsErasePassword,
1.600 + /** @SYMTraceFormatString "-RFs::ErasePassword() r %d" */
1.601 + EFsErasePasswordReturn,
1.602 + /** @SYMTraceFormatString "+RFs::StartupInitComplete() sess %x status %x" */
1.603 + EFsStartupInitComplete,
1.604 + /** @SYMTraceFormatString "-RFs::StartupInitComplete() r %d" */
1.605 + EFsStartupInitCompleteReturn,
1.606 + /** @SYMTraceFormatString "+RFs::SetLocalDriveMapping() sess %x aMapping %*x" */
1.607 + EFsSetLocalDriveMapping,
1.608 + /** @SYMTraceFormatString "-RFs::SetLocalDriveMapping() r %d" */
1.609 + EFsSetLocalDriveMappingReturn,
1.610 + /** @SYMTraceFormatString "+RFs::FinaliseDrive() sess %x aDriveNo %d aMode %d" */
1.611 + EFsFinaliseDrive,
1.612 + /** @SYMTraceFormatString "-RFs::FinaliseDrive() r %d" */
1.613 + EFsFinaliseDriveReturn,
1.614 + /** @SYMTraceFormatString "+RFs::FinaliseDrives() sess %x" */
1.615 + EFsFinaliseDrives,
1.616 + /** @SYMTraceFormatString "-RFs::FinaliseDrives() r %d" */
1.617 + EFsFinaliseDrivesReturn,
1.618 + /** @SYMTraceFormatString "+RFs::SwapFileSystem() sess %x aOldFileSystemName %*S aNewFileSystemName %*S aDrive %d" */
1.619 + EFsSwapFileSystem,
1.620 + /** @SYMTraceFormatString "-RFs::SwapFileSystem() r %d" */
1.621 + EFsSwapFileSystemReturn,
1.622 + /** @SYMTraceFormatString "+RFs::AddCompositeMount() sess %x aFileSystemName %*S aLocalDriveToMount %d aCompositeDrive %d aSync %d" */
1.623 + EFsAddCompositeMount,
1.624 + /** @SYMTraceFormatString "-RFs::AddCompositeMount() r %d" */
1.625 + EFsAddCompositeMountReturn,
1.626 + /** @SYMTraceFormatString "+RFs::ReserveDriveSpace() sess %x aDriveNo %d aSpace %d" */
1.627 + EFsReserveDriveSpace,
1.628 + /** @SYMTraceFormatString "-RFs::ReserveDriveSpace() r %d" */
1.629 + EFsReserveDriveSpaceReturn,
1.630 + /** @SYMTraceFormatString "+RFs::GetReserveAccess() sess %x aDriveNo %d" */
1.631 + EFsGetReserveAccess,
1.632 + /** @SYMTraceFormatString "-RFs::GetReserveAccess() r %d" */
1.633 + EFsGetReserveAccessReturn,
1.634 + /** @SYMTraceFormatString "+RFs::ReleaseReserveAccess() sess %x aDriveNo %d" */
1.635 + EFsReleaseReserveAccess,
1.636 + /** @SYMTraceFormatString "-RFs::ReleaseReserveAccess() r %d" */
1.637 + EFsReleaseReserveAccessReturn,
1.638 + /** @SYMTraceFormatString "+RFs::NotifyDismount() sess %x aDrive %d stauts %x aMode %d" */
1.639 + EFsNotifyDismount,
1.640 + /** @SYMTraceFormatString "-RFs::NotifyDismount() r %d" */
1.641 + EFsNotifyDismountReturn,
1.642 + /** @SYMTraceFormatString "+RFs::NotifyDismountCancel1() sess %x status %x" */
1.643 + EFsNotifyDismountCancel1,
1.644 + /** @SYMTraceFormatString "-RFs::NotifyDismountCancel1() r %d" */
1.645 + EFsNotifyDismountCancel1Return,
1.646 + /** @SYMTraceFormatString "+RFs::NotifyDismountCancel2() sess %x" */
1.647 + EFsNotifyDismountCancel2,
1.648 + /** @SYMTraceFormatString "-RFs::NotifyDismountCancel2() r %d" */
1.649 + EFsNotifyDismountCancel2Return,
1.650 + /** @SYMTraceFormatString "+RFs::AllowDismount() sess %x aDrive %d" */
1.651 + EFsAllowDismount,
1.652 + /** @SYMTraceFormatString "-RFs::AllowDismount() r %d" */
1.653 + EFsAllowDismountReturn,
1.654 + /** @SYMTraceFormatString "+RFs::SetStartupConfiguration() sess %x aCommand %d aParam1 %x aParam2 %x" */
1.655 + EFsSetStartupConfiguration,
1.656 + /** @SYMTraceFormatString "-RFs::SetStartupConfiguration() r %d" */
1.657 + EFsSetStartupConfigurationReturn,
1.658 + /** @SYMTraceFormatString "+RFs::SetNotifyChange() sess %x aNotifyChange %d" */
1.659 + EFsSetNotifyChange,
1.660 + /** @SYMTraceFormatString "-RFs::SetNotifyChange() r %d" */
1.661 + EFsSetNotifyChangeReturn,
1.662 + /** @SYMTraceFormatString "+RFs::InitialisePropertiesFile() sess %x filePtr %x fileLen %d" */
1.663 + EFsInitialisePropertiesFile,
1.664 + /** @SYMTraceFormatString "-RFs::InitialisePropertiesFile() r %d" */
1.665 + EFsInitialisePropertiesFileReturn,
1.666 + /** @SYMTraceFormatString "+RFs::QueryVolumeInfoExt() sess %x aDrive %d aCommand %d" */
1.667 + EFsQueryVolumeInfoExt,
1.668 + /** @SYMTraceFormatString "-RFs::QueryVolumeInfoExt() r %d" */
1.669 + EFsQueryVolumeInfoExtReturn,
1.670 + /** @SYMTraceFormatString "+RFs::VolumeIOParam() sess %x aDrive %d" */
1.671 + EFsVolumeIOParam,
1.672 + /** @SYMTraceFormatString "-RFs::VolumeIOParam() r %d iBlockSize %d iClusterSize %d iRecReadBufSize %d iRecWriteBufSize %d" */
1.673 + EFsVolumeIOParamReturn,
1.674 + /** @SYMTraceFormatString "+RFs::FileSystemSubType() sess %x aDrive %d aName %*S" */
1.675 + EFsFileSystemSubType,
1.676 + /** @SYMTraceFormatString "-RFs::FileSystemSubType() r %d" */
1.677 + EFsFileSystemSubTypeReturn,
1.678 +
1.679 + /** @SYMTraceFormatString "+RFs::AddPlugin() sess %x aFileName %*S" */
1.680 + EFsAddPlugin,
1.681 + /** @SYMTraceFormatString "-RFs::AddPlugin() r %d" */
1.682 + EFsAddPluginReturn,
1.683 +
1.684 + /** @SYMTraceFormatString "+RFs::RemovePlugin() sess %x aPluginName %*S" */
1.685 + EFsRemovePlugin,
1.686 + /** @SYMTraceFormatString "-RFs::RemovePlugin() r %d" */
1.687 + EFsRemovePluginReturn,
1.688 +
1.689 + /** @SYMTraceFormatString "+RFs::MountPlugin1() sess %x aPluginName %*S" */
1.690 + EFsMountPlugin1,
1.691 + /** @SYMTraceFormatString "-RFs::MountPlugin1() r %d" */
1.692 + EFsMountPlugin1Return,
1.693 +
1.694 + /** @SYMTraceFormatString "+RFs::MountPlugin2() sess %x aPluginName %*S aDrive %d" */
1.695 + EFsMountPlugin2,
1.696 + /** @SYMTraceFormatString "-RFs::MountPlugin2() r %d" */
1.697 + EFsMountPlugin2Return,
1.698 +
1.699 + /** @SYMTraceFormatString "+RFs::MountPlugin3() sess %x aPluginName %*S aDrive %d aPos %d" */
1.700 + EFsMountPlugin3,
1.701 + /** @SYMTraceFormatString "-RFs::MountPlugin3() r %d" */
1.702 + EFsMountPlugin3Return,
1.703 +
1.704 + /** @SYMTraceFormatString "+RFs::DismountPlugin() sess %x aPluginName %*S" */
1.705 + EFsDismountPlugin1,
1.706 + /** @SYMTraceFormatString "-RFs::DismountPlugin() r %d" */
1.707 + EFsDismountPlugin1Return,
1.708 +
1.709 + /** @SYMTraceFormatString "+RFs::DismountPlugin2() sess %x aPluginName %*S aDrive %d" */
1.710 + EFsDismountPlugin2,
1.711 + /** @SYMTraceFormatString "-RFs::DismountPlugin2() r %d" */
1.712 + EFsDismountPlugin2Return,
1.713 +
1.714 + /** @SYMTraceFormatString "+RFs::DismountPlugin3() sess %x aPluginName %*S aDrive %d aPos %d" */
1.715 + EFsDismountPlugin3,
1.716 + /** @SYMTraceFormatString "-RFs::DismountPlugin3() r %d" */
1.717 + EFsDismountPlugin3Return,
1.718 +
1.719 + /** @SYMTraceFormatString "+RFs::PluginName() sess %x aDrive %d aPos %d" */
1.720 + EFsPluginName,
1.721 + /** @SYMTraceFormatString "-RFs::PluginName() r %d aName %*S" */
1.722 + EFsPluginNameReturn,
1.723 +
1.724 + /** @SYMTraceFormatString "+RFs::Close() sess %x" */
1.725 + EFsClose,
1.726 + /** @SYMTraceFormatString "-RFs::Close() r %d" */
1.727 + EFsCloseReturn,
1.728 +
1.729 +
1.730 + /** @SYMTraceFormatString "+RDir::Open1() sess %x aName %*S aUidType0 %x aUidType1 %x aUidType2 %x" */
1.731 + EDirOpen1,
1.732 + /** @SYMTraceFormatString "-RDir::Open1() r %d subs %x" */
1.733 + EDirOpen1Return,
1.734 +
1.735 + /** @SYMTraceFormatString "+RDir::Open2() sess %x aName %*S anAttMask %x" */
1.736 + EDirOpen2,
1.737 + /** @SYMTraceFormatString "-RDir::Open2() r %d subs %x" */
1.738 + EDirOpen2Return,
1.739 +
1.740 + /** @SYMTraceFormatString "+RDir::Close() sess %x subs %x" */
1.741 + EDirClose,
1.742 + /** @SYMTraceFormatString "-RDir::Close()" */
1.743 + EDirCloseReturn,
1.744 +
1.745 + /** @SYMTraceFormatString "+RDir::Read1() sess %x subs %x" */
1.746 + EDirRead1,
1.747 + /** @SYMTraceFormatString "-RDir::Read1() r %d count %d" */
1.748 + EDirRead1Return,
1.749 +
1.750 + /** @SYMTraceFormatString "+RDir::Read2() sess %x subs %x status %x" */
1.751 + EDirRead2,
1.752 + /** @SYMTraceFormatString "-RDir::Read2()" */
1.753 + EDirRead2Return,
1.754 +
1.755 + /** @SYMTraceFormatString "+RDir::Read3() sess %x subs %x" */
1.756 + EDirRead3,
1.757 + /** @SYMTraceFormatString "-RDir::Read3() r %d" */
1.758 + EDirRead3Return,
1.759 +
1.760 + /** @SYMTraceFormatString "+RDir::Read4() sess %x subs %x status %x" */
1.761 + EDirRead4,
1.762 + /** @SYMTraceFormatString "-RDir::Read4()" */
1.763 + EDirRead4Return,
1.764 +
1.765 +
1.766 + /** @SYMTraceFormatString "+RFormat::Open1() sess %x aName %*S aFormatMode %x" */
1.767 + EFormat1Open,
1.768 + /** @SYMTraceFormatString "-RFormat::Open1() r %d subs %x aCount %d" */
1.769 + EFormatOpen1Return,
1.770 +
1.771 + /** @SYMTraceFormatString "+RFormat::Open2() sess %x aName %*S aFormatMode %x aInfo %x" */
1.772 + EFormat2Open,
1.773 + /** @SYMTraceFormatString "-RFormat::Open2() r %d subs %x aCount %d" */
1.774 + EFormatOpen2Return,
1.775 +
1.776 + /** @SYMTraceFormatString "+RFormat::Close() sess %x subs %x" */
1.777 + EFormatClose,
1.778 + /** @SYMTraceFormatString "-RFormat::Close()" */
1.779 + EFormatCloseReturn,
1.780 +
1.781 + /** @SYMTraceFormatString "+RFormat::Next1() sess %x subs %x" */
1.782 + EFormatNext1,
1.783 + /** @SYMTraceFormatString "-RFormat::Next1() r %d aStep %d" */
1.784 + EFormatNext1Return,
1.785 +
1.786 + /** @SYMTraceFormatString "+RFormat::Next2() sess %x subs %x status %x" */
1.787 + EFormatNext2,
1.788 + /** @SYMTraceFormatString "-RFormat::Next2()" */
1.789 + EFormatNext2Return,
1.790 +
1.791 +
1.792 +
1.793 + /** @SYMTraceFormatString "+RPlugin::Open() aPos %d" */
1.794 + EPluginOpen,
1.795 + /** @SYMTraceFormatString "-RPlugin::Open() r %d subs %x" */
1.796 + EPluginOpenReturn,
1.797 +
1.798 + /** @SYMTraceFormatString "+RPlugin::Close() sess %x subs %x" */
1.799 + EPluginClose,
1.800 + /** @SYMTraceFormatString "-RPlugin::Close() r %d" */
1.801 + EPluginCloseReturn,
1.802 +
1.803 + /** @SYMTraceFormatString "+RPlugin::DoRequest1() sess %x subs %x aReqNo %d status %x" */
1.804 + EPluginDoRequest1,
1.805 + /** @SYMTraceFormatString "-RPlugin::DoRequest1()" */
1.806 + EPluginDoRequest1Return,
1.807 +
1.808 + /** @SYMTraceFormatString "+RPlugin::DoRequest2() sess %x subs %x aReqNo %d status %x a1 %x" */
1.809 + EPluginDoRequest2,
1.810 + /** @SYMTraceFormatString "-RPlugin::DoRequest2()" */
1.811 + EPluginDoRequest2Return,
1.812 +
1.813 + /** @SYMTraceFormatString "+RPlugin::DoRequest3() sess %x subs %x aReqNo %d status %x a1 %x a2 %x" */
1.814 + EPluginDoRequest3,
1.815 + /** @SYMTraceFormatString "-RPlugin::DoRequest3()" */
1.816 + EPluginDoRequest3Return,
1.817 +
1.818 + /** @SYMTraceFormatString "+RPlugin::DoControl() sess %x subs %x aFunction %d" */
1.819 + EPluginDoControl1,
1.820 + /** @SYMTraceFormatString "-RPlugin::DoControl() r %d" */
1.821 + EPluginDoControl1Return,
1.822 +
1.823 + /** @SYMTraceFormatString "+RPlugin::DoControl2() sess %x subs %x aFunction %d a1 %x" */
1.824 + EPluginDoControl2,
1.825 + /** @SYMTraceFormatString "-RPlugin::DoControl2() r %d" */
1.826 + EPluginDoControl2Return,
1.827 +
1.828 + /** @SYMTraceFormatString "+RPlugin::DoControl3() sess %x subs %x aFunction %d a1 %x a2 %x" */
1.829 + EPluginDoControl3,
1.830 + /** @SYMTraceFormatString "-RPlugin::DoControl3() r %d" */
1.831 + EPluginDoControl3Return,
1.832 +
1.833 + /** @SYMTraceFormatString "+RPlugin::DoCancel() sess %x subs %x aReqMask %x" */
1.834 + EPluginDoCancel,
1.835 + /** @SYMTraceFormatString "-RPlugin::DoCancel()" */
1.836 + EPluginDoCancelReturn,
1.837 +
1.838 +
1.839 + /** @SYMTraceFormatString "+CFileMan::NewL1() sess %x" */
1.840 + ECFileManNewL1,
1.841 + /** @SYMTraceFormatString "-CFileMan::NewL1() CFileMan* %x" */
1.842 + ECFileManNewL1Return,
1.843 +
1.844 + /** @SYMTraceFormatString "+CFileMan::NewL2() sess %x anObserver %x" */
1.845 + ECFileManNewL2,
1.846 + /** @SYMTraceFormatString "-CFileMan::NewL2() CFileMan* %x" */
1.847 + ECFileManNewL2Return,
1.848 +
1.849 + /** @SYMTraceFormatString "+CFileMan::~CFileMan() this %x" */
1.850 + ECFileManDestructor,
1.851 + /** @SYMTraceFormatString "-CFileMan::~CFileMan()" */
1.852 + ECFileManDestructorReturn,
1.853 +
1.854 + /** @SYMTraceFormatString "+CFileMan::CurrentAction() this %x" */
1.855 + ECFileManCurrentAction,
1.856 + /** @SYMTraceFormatString "-CFileMan::CurrentAction() action %d" */
1.857 + ECFileManCurrentActionReturn,
1.858 +
1.859 + /** @SYMTraceFormatString "+CFileMan::GetCurrentTarget() this %x" */
1.860 + ECFileManGetCurrentTarget,
1.861 + /** @SYMTraceFormatString "-CFileMan::GetCurrentTarget() aTrgName %*S" */
1.862 + ECFileManGetCurrentTargetReturn,
1.863 +
1.864 + /** @SYMTraceFormatString "+CFileMan::GetCurrentSource() this %x" */
1.865 + ECFileManGetCurrentSource,
1.866 + /** @SYMTraceFormatString "-CFileMan::GetCurrentSource() aSrcName %*S" */
1.867 + ECFileManGetCurrentSourceReturn,
1.868 +
1.869 + /** @SYMTraceFormatString ".CFileMan::BytesTransferredByCopyStep() this %x BytesTransferred %d" */
1.870 + ECFileManBytesTransferredByCopyStep,
1.871 +
1.872 + /** @SYMTraceFormatString "+CFileMan::Attribs1() this %x aName %*S aSetMask %x aClearMask %x aTime %lx aSwitches %d, status %x" */
1.873 + ECFileManAttribs1,
1.874 + /** @SYMTraceFormatString "-CFileMan::Attribs1() r %d" */
1.875 + ECFileManAttribs1Return,
1.876 +
1.877 + /** @SYMTraceFormatString "+CFileMan::Attribs2() this %x aName %*S aSetMask %x aClearMask %x aTime %lx aSwitches %d" */
1.878 + ECFileManAttribs2,
1.879 + /** @SYMTraceFormatString "-CFileMan::Attribs2() r %d" */
1.880 + ECFileManAttribs2Return,
1.881 +
1.882 + /** @SYMTraceFormatString "+CFileMan::Copy1() this %x anOld %*S aNew %*S aSwitches %d status %x" */
1.883 + ECFileManCopy1,
1.884 + /** @SYMTraceFormatString "-CFileMan::Copy1() r %d" */
1.885 + ECFileManCopy1Return,
1.886 +
1.887 + /** @SYMTraceFormatString "+CFileMan::Copy2() this %x anOld %*S aNew %*S aSwitches %d" */
1.888 + ECFileManCopy2,
1.889 + /** @SYMTraceFormatString "-CFileMan::Copy2() r %d" */
1.890 + ECFileManCopy2Return,
1.891 +
1.892 + /** @SYMTraceFormatString "+CFileMan::Copy3() this %x anOldSubs %x aNew %*S aSwitches %d" */
1.893 + ECFileManCopy3,
1.894 + /** @SYMTraceFormatString "-CFileMan::Copy3() r %d" */
1.895 + ECFileManCopy3Return,
1.896 +
1.897 + /** @SYMTraceFormatString "+CFileMan::Copy4() this %x anOldSubs %x aNew %*S aSwitches %dstatus %x" */
1.898 + ECFileManCopy4,
1.899 + /** @SYMTraceFormatString "-CFileMan::Copy4() r %d" */
1.900 + ECFileManCopy4Return,
1.901 +
1.902 + /** @SYMTraceFormatString "+CFileMan::Delete1() this %x aName %*S aSwitches %d status %x" */
1.903 + ECFileManDelete1,
1.904 + /** @SYMTraceFormatString "-CFileMan::Delete1() r %d" */
1.905 + ECFileManDelete1Return,
1.906 +
1.907 + /** @SYMTraceFormatString "+CFileMan::Delete2() this %x aName %*S aSwitches %d" */
1.908 + ECFileManDelete2,
1.909 + /** @SYMTraceFormatString "-CFileMan::Delete2() r %d" */
1.910 + ECFileManDelete2Return,
1.911 +
1.912 + /** @SYMTraceFormatString "+CFileMan::Move1() this %x anOld %*S aNew %*S aSwitches %d status %x" */
1.913 + ECFileManMove1,
1.914 + /** @SYMTraceFormatString "-CFileMan::Move1() r %d" */
1.915 + ECFileManMove1Return,
1.916 +
1.917 + /** @SYMTraceFormatString "+CFileMan::Move2() this %x anOld %*S aNew %*S aSwitches %d" */
1.918 + ECFileManMove2,
1.919 + /** @SYMTraceFormatString "-CFileMan::Move2() r %d" */
1.920 + ECFileManMove2Return,
1.921 +
1.922 + /** @SYMTraceFormatString "+CFileMan::Rename1() this %x anOld %*S aNew %*S aSwitches %d status %x" */
1.923 + ECFileManRename1,
1.924 + /** @SYMTraceFormatString "-CFileMan::Rename1() r %d" */
1.925 + ECFileManRename1Return,
1.926 +
1.927 + /** @SYMTraceFormatString "+CFileMan::Rename2() this %x anOld %*S aNew %*S aSwitches %d" */
1.928 + ECFileManRename2,
1.929 + /** @SYMTraceFormatString "-CFileMan::Rename2() r %d" */
1.930 + ECFileManRename2Return,
1.931 +
1.932 + /** @SYMTraceFormatString "+CFileMan::RmDir1() this %x aDirName %*S status %x" */
1.933 + ECFileManRmDir1,
1.934 + /** @SYMTraceFormatString "-CFileMan::RmDir1() r %d" */
1.935 + ECFileManRmDir1Return,
1.936 +
1.937 + /** @SYMTraceFormatString "+CFileMan::RmDir2() this %x aDirName %*S" */
1.938 + ECFileManRmDir2,
1.939 + /** @SYMTraceFormatString "-CFileMan::RmDir2() r %d" */
1.940 + ECFileManRmDir2Return,
1.941 +
1.942 +
1.943 +
1.944 +
1.945 +
1.946 + /** @SYMTraceFormatString "+CDirScan::NewL() sess %x" */
1.947 + ECDirScanNewL,
1.948 + /** @SYMTraceFormatString "-CDirScan::NewL() CDirScan* %x" */
1.949 + ECDirScanNewLReturn,
1.950 +
1.951 + /** @SYMTraceFormatString "+CDirScan::NewLC() sess %x" */
1.952 + ECDirScanNewLC,
1.953 + /** @SYMTraceFormatString "-CDirScan::NewLC() CDirScan* %x" */
1.954 + ECDirScanNewLCReturn,
1.955 +
1.956 + /** @SYMTraceFormatString "+CDirScan::~CDirScan() this %x" */
1.957 + ECDirScanDestructor,
1.958 + /** @SYMTraceFormatString "-CDirScan::~CDirScan()" */
1.959 + ECDirScanDestructorReturn,
1.960 +
1.961 + /** @SYMTraceFormatString "+CDirScan::SetScanDataL() this %x aMatchName %*S anEntryAttMask %x anEntrySortKey %d aScanDir %d" */
1.962 + ECDirScanSetScanDataL,
1.963 + /** @SYMTraceFormatString "-CDirScan::SetScanDataL() r %d" */
1.964 + ECDirScanSetScanDataLReturn,
1.965 +
1.966 + /** @SYMTraceFormatString "+CDirScan::NextL() this %x" */
1.967 + ECDirScanNextL,
1.968 + /** @SYMTraceFormatString "-CDirScan::NextL() r %d DirEntries %d" */
1.969 + ECDirScanNextLReturn,
1.970 +
1.971 + /** @SYMTraceFormatString "-CDirScan Leave r %d" */
1.972 + ECDirScanLeave,
1.973 +
1.974 +
1.975 +
1.976 +
1.977 +
1.978 +
1.979 + /** @SYMTraceFormatString "Efsrv.dll Panic r %d" */
1.980 + EPanic,
1.981 +
1.982 +
1.983 + /** @SYMTraceFormatString "TimeStamp" */
1.984 + ETimeStamp,
1.985 +
1.986 + /**
1.987 + Provided to allow the following compile time assert.
1.988 + */
1.989 + EFormatIdHighWaterMark,
1.990 + };
1.991 + __ASSERT_COMPILE(EFormatIdHighWaterMark <= (UTF::KMaxFormatId + 1));
1.992 +
1.993 +
1.994 +
1.995 + } // end of namespace UTraceModuleEfsrv
1.996 +
1.997 +
1.998 +#endif // UTRACEEFSRV_H