First public contribution.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 @deprecated Migrate to Open System Trace Instrumentation API instead
22 #ifndef __FLOGGER_INL__
23 #define __FLOGGER_INL__
28 TSignal inline functions
31 inline FLogger::TSignal::TSignal(TRequestStatus& aStatus)
32 :iStatus(&aStatus),iId(RThread().Id())
34 Sets aStatus with the value KRequestPending.
38 aStatus=KRequestPending;
41 inline TPtrC FLogger::TSignal::Command() const
45 return TPtrC((const TText*)this,sizeof(*this)/sizeof(TText));
48 inline TInt FLogger::TSignal::Set(const TDesC& aCommand)
50 Sets aCommand with "this" pointer value.
52 @return KErrNone, if successful.
55 if (aCommand.Size()!=sizeof(*this))
58 return (Mem::Copy(this,aCommand.Ptr(),sizeof(*this)),KErrNone);
62 TLogFile inline functions
65 inline TBool TLogFile::Valid() const
67 @return EFalse for invalid file name.
73 inline TFileName TLogFile::Directory() const
75 @return iDirectory the full path of the folder.
81 inline TFileName TLogFile::Name() const
83 @return iName the file name of the log.
89 inline TFileLoggingMode TLogFile::Mode() const
91 @return iMode the mode of the log file.
97 inline void TLogFile::SetValid(TBool aValid)
99 Sets iValid with the value aValid.
105 #endif // __FLOGGER_INL__