Exemplo n.º 1
0
CRemoteMountCB::CRemoteMountCB()
//
// Constructor
//
	{
	__DECLARE_NAME(_S("CRemoteMountCB"));
	}
Exemplo n.º 2
0
CTestFileSystem::CTestFileSystem()
//
// Constructor
//
	{
	__DECLARE_NAME(_S("CTestFileSystem3"));
	}
Exemplo n.º 3
0
CProxyProvd::CProxyProvd(CProxyProtocol &aProtocol)
	{
	__DECLARE_NAME(_S("CTestIntSocketProvd"));
	iIsBound=EFalse;
	iProtocol=&aProtocol;
	iCompleteIoctl = FALSE;
	}
Exemplo n.º 4
0
CApaAppListServer::CApaAppListServer(TInt aPriority)
	: CPolicyServer(aPriority,KApaServPolicy),
	iAppList(0),
	iTypeStoreModified(0),
	iLoadRecognizersOnDemand(KApaLoadDataRecognizersOnDemand),
	iLoadMbmIconsOnDemand(KApaLoadMbmIconsOnDemand)
	{
	
	#ifdef __WINS__
	// KApaLoadDataRecognizersOnDemand and KApaloadIconsOnDemand are Rom patchable constants,
	// so need an emulator equivalent
	// if WINS then read value from epoc.ini
	// requires licencees to set property in epoc.ini

	TInt halValue = 0;
	if (UserSvr::HalFunction(EHalGroupEmulator, EEmulatorHalIntProperty, (TAny*)"patchdata_apserv_dll_KApaLoadDataRecognizersOnDemand", &halValue) == KErrNone)
		{
		iLoadRecognizersOnDemand = halValue;
		}
	if (UserSvr::HalFunction(EHalGroupEmulator, EEmulatorHalIntProperty, (TAny*)"patchdata_apserv_dll_KApaLoadMbmIconsOnDemand", &halValue) == KErrNone)
		{
		iLoadMbmIconsOnDemand = halValue;
		}
	#endif

	__DECLARE_NAME(_S("CApaAppListServer"));
	}
CMessageServServer3::CMessageServServer3(TInt aPriority)
	: CServer2(aPriority)
/**
   Constructor
 */
	{
	__DECLARE_NAME(_S("CMessageServServer"));
	}
// ---------------------------------------------------------
// CDownloadMgrSession::CDownloadMgrSession
// ---------------------------------------------------------
//
CDownloadMgrSession::CDownloadMgrSession()
: iComplete( ETrue )
,iIsMaster( EFalse )
	{
	__DECLARE_NAME( _S( "CDownloadMgrSession" ) );
	
	CLOG_CREATE;
	}
Exemplo n.º 7
0
CDestroyDummySubSession::CDestroyDummySubSession(CTelServer* aTelServer, CTelObject* aTelObject)
//
// C'tor
//
	:CAsyncOneShot(CActive::EPriorityLow), iTelObject(aTelObject), iTelServer(aTelServer)
	{
	__DECLARE_NAME(_S("CDestroyDummySubSession"));
	}
Exemplo n.º 8
0
CFontCache::CFontCacheEntry::CFontCacheEntry(CFont* aFont,const TFontSpec& aFontSpec,CFontCacheEntry* aNext):
	CBase(),
	iFont(aFont),
	iSpec(aFontSpec),
	iNext(aNext)
	{
	__DECLARE_NAME(_S("CFontCacheEntry"));
	}
Exemplo n.º 9
0
CCompleteRelinquish::CCompleteRelinquish(CTelObject* aTelObject)
//
// C'tor
//
	:CAsyncOneShot(CActive::EPriorityLow), iTelObject(aTelObject)
	{
	__DECLARE_NAME(_S("CCompleteRelinquish"));
	}
Exemplo n.º 10
0
CMsvServerEntry::CMsvServerEntry(CMsvServer& aServer)
: CActive(EPriorityStandard), iLockedStore(EFalse), iServer(aServer)
//
//
//
	{
	__DECLARE_NAME(_S("CMsvServerEntry"));
	}
Exemplo n.º 11
0
CTelSchedulerStop::CTelSchedulerStop()
//
// C'tor
//
	:CAsyncOneShot(CActive::EPriorityLow)
	{
	__DECLARE_NAME(_S("CTelSchedulerStop"));
	}
Exemplo n.º 12
0
EXPORT_C CFontCache::CFontCache():
	CBase(),
	iMaxEntries(KMaxFontCacheEntries)
/** Default constructor.

This constructs a CFontCache of size KMaxFontCacheEntries. */
	{
	__DECLARE_NAME(_S("CFontCache"));
	}
Exemplo n.º 13
0
CMemDir::CMemDir()
//
// Constructor.
//
	: iEntryQ(CMemEntry::LinkOffset())
	{

	__DECLARE_NAME(_S("CMemDir"));
	}
Exemplo n.º 14
0
/**
Constructor

@param aServerEntry Server entry
@param aSettings SMTP settings
*/
CImSmtpSession::CImSmtpSession(CMsvServerEntry& aServerEntry, CSmtpSettings& aSettings, TMsvId aServiceId)
			  :	CMsgActive(KImSmtpSessionPriority),
			    iServerEntry(aServerEntry),
				iSettings(aSettings),
				iServiceId(aServiceId),
				iCurrentAuthProfile(CSmtpAuthMechanismHelper::EUndefined) // always start with undefined
	{
	__DECLARE_NAME(_S("CImSmtpSession"));
	}
Exemplo n.º 15
0
CProxyProtocol::CProxyProtocol(TServerProtocolDesc* aProtoDesc)
//
//
//
	:CProtocolBase(),iProtoDesc(aProtoDesc),iProtocols(0x16)
	{
	__DECLARE_NAME(_S("CProxyProtocol"));
	iStarted=EFalse;
	}
CMessageServSession3::CMessageServSession3(CMessageServServer3 * aServer)
	: CSession2()//aClient)
/**
   Constructor - passes client to CSession.
 */
	{
	__DECLARE_NAME(_S("CMessageServSession3"));
	iMsgSvr=aServer;
	}
Exemplo n.º 17
0
EXPORT_C CFontCache::CFontCache(TInt aMaxEntries):
	CBase(),
	iMaxEntries(aMaxEntries)
/** Constructor specifying the number of cache entries.

@param aMaxEntries Number of entries for this cache. You must ensure this 
is less than or equal to KMaxFontCacheEntries. */
	{
	__DECLARE_NAME(_S("CFontCache"));
	}
Exemplo n.º 18
0
CIniData::CIniData() 
/**
Default constructor

*/
	: iPtr(NULL,0), section(NULL,0), block(NULL,0), BlockState(E_UNKNOWN),
	  blockStart(0), blockEnd(0), scanStart(0)
	{
	__DECLARE_NAME(_S("CIniData"));
	}
Exemplo n.º 19
0
CRemoteFileCB::CRemoteFileCB()
//
// Constructor
//
	{

//	iCurrentPos=0;
//	iAttPending=EFalse;
//	iWinHandle=NULL;
	__DECLARE_NAME(_S("CRemoteFileCB"));
	}
Exemplo n.º 20
0
CMemEntry::CMemEntry(const TEntry& anEntry)
//
// Constructor.
//
	{

	iEntry.iAtt=(TUint8)(anEntry.iAtt|KEntryAttReadOnly); // All rom files are read only
	iEntry.iSize=anEntry.iSize;
	iEntry.iNameLength=(TUint8)anEntry.iName.Size();
	iSize=Align4(anEntry.iSize);
	__DECLARE_NAME(_S("CMemEntry"));
	}
Exemplo n.º 21
0
EXPORT_C CObexSrvMtm::CObexSrvMtm(CRegisteredMtmDll& aRegisteredMtmDll, CMsvServerEntry* aEntry):
	CBaseServerMtm(aRegisteredMtmDll, aEntry)
/**
 * Constructor
 *
 * @param aRegisterMtmDll	registration data for MTM dll
 * @param aEntry			Message Server entry to operate upon
 */
	{
	__DECLARE_NAME(_S("CObexSrvMtm"));
	iSendOperation = 0;
	}
Exemplo n.º 22
0
CPriorityKey::CPriorityKey(CWsClient *aOwner) : CEventBase(aOwner)
	{
	__DECLARE_NAME(_S("CPriorityKey"));
	}
Exemplo n.º 23
0
CPrintSetup::CPrintSetup()
	{__DECLARE_NAME(_S("CPrintSetup"));}
Exemplo n.º 24
0
/**
 *  Standard constructor.
 */
CShBufTestServer::CShBufTestServer()
	: CServer2(EPriorityNormal),
	iShouldShutdownServer(EFalse)
	{
	__DECLARE_NAME(_L("CShBufTestServer"));
	} // CShBufTestServer::CShBufTestServer
Exemplo n.º 25
0
CProtocolFamilyCryptoEay::CProtocolFamilyCryptoEay()
	{
    __DECLARE_NAME(_S("CProtocolFamilyCryptoIpsecCrypto"));
	}
Exemplo n.º 26
0
CProtocolEay::CProtocolEay()
	{
    __DECLARE_NAME(_S("CProtocolIpsecCrypto"));
	}
Exemplo n.º 27
0
EXPORT_C CTWinBase::CTWinBase(TInt aType) : iType(aType)
	{
	__DECLARE_NAME(_S("CTWinBase"));
	}
Exemplo n.º 28
0
// CBrdServer::CBrdServer(CAnvltestEngine *aControl)
//    :CServer(EPriorityStandard), iControl(aControl)
CBrdServer::CBrdServer(CAnvltestEngine *aControl)
    :CServer2(EPriorityStandard), iControl(aControl)

    {
    __DECLARE_NAME(_S("CBrdServer"));
    }
Exemplo n.º 29
0
CBrdSession::CBrdSession(/* TInt aClient */)
    :CSession2()
    {
    __DECLARE_NAME(_S("CBrdSession"));
    }
Exemplo n.º 30
0
EXPORT_C CTBaseWin::CTBaseWin(TInt aType) : CTWinBase(aType)
	{
	__DECLARE_NAME(_S("CTBaseWin"));
	}