Location:
CommsDat.h
namespace CommsDat
This file contains :
1/ Class for expressing a session with the storage server
CMDBSession
This class contains functions to create and close a session, to set the dataset version and to request database actions such as locking for a transaction.
2/ Generic database functionality interface
MMetaDatabase
This class uses a CMDBSession object
3/ General base class that inherits from MMetaDatabase to express any database element
CMDBElement
This class contains the ElementId for each MetaDatabase object An element id locates stored data in the comms database.
4/ Data classes that each inherit from CMDBElement
a) Fields
CMDBField<T>
where T is a basic type value of the field (TInt, TDes, TBool etc)
This class derives from
CMDBElement
to implement the thin template idiom
CMDBRecordLink<T>
where T is a record of a particular type. This class expresses a soft-link from a field in one record to a record of a different type (i.e. in another table). The TMDBElementId value stored in this field in the repository is the id of an instance of the record of type T
This class derives from
CMDBRecordLinkBase
to implement the thin template idiom
b) Field Containers
CCDRecord
base class for record containing specific list of fields - see CommsDatTypesv1_1.h
CMDBRecordSet<T>
an array of records where T is the record type. This can represent a Table in a database.
5/ Other support classes and type definitions
TMDBElementId
The TMDBElementId locates a data object or set of data objects in the database.
A TMDBElementId expresses
A TMDBElementId has a different format depending on the data type it expresses
Table <0><0> Column <0>
Record <0> Field
TMDBAttributeFlags
Attribute settings for any storable element. Attributes express access control for data in the database
Defined in CommsDat
:
CCDAccessPointRecord
, CCDBearerRecordBase
, CCDCDMA2000PacketServiceRecord
, CCDChargecardRecord
, CCDConnectionPrefsRecord
, CCDDialInISPRecord
, CCDDialOutISPRecord
, CCDGlobalSettingsRecord
, CCDIAPPrioritySelectionPolicyRecord
, CCDIAPRecord
, CCDIncomingGprsRecord
, CCDLANBearerRecord
, CCDLANServiceRecord
, CCDLocationRecord
, CCDModemBearerRecord
, CCDNetworkRecord
, CCDOutgoingGprsRecord
, CCDPANServiceExtRecord
, CCDProxiesRecord
, CCDRecordBase
, CCDSelectionPolicyRecordBase
, CCDServiceRecordBase
, CCDUmtsR99QoSAndOnTableRecord
, CCDVPNServiceRecord
, CCDVirtualBearerRecord
, CCDWAPAccessPointRecord
, CCDWAPIPBearerRecord
, CCDWAPSMSBearerRecord
, CCDWCDMAPacketServiceRecord
, CMDBGenericRecord
, CMDBRecordBase
, CMDBRecordLink
, CMDBRecordSetBase
, ENoAttrs
, ENotNull
, SGenericRecordTypeInfo
, SGenericRecordTypeInfoTag
, TFieldTypeAttributes
, TMDBElementId
class CCDRecordBase : public CommsDat::CMDBRecordBase;
Base class for wrapper containers for supported CommsDat
recordtypes Alternatively the class CMDBGenericRecord
can be used to express any record.
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
Defined in CommsDat::CCDRecordBase
:
CCDRecordBase()
, CreateCopyRecordL()
, GetAttribPtr()
, GetVDataTable()
, GetVDataTableStatic()
, RecordFactoryL()
, iRecordName
, iRecordTag
, iVDataTable
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
,
GetRecordInfo()
CCDRecordBase()
IMPORT_C CCDRecordBase(TMDBElementId aElementId);
|
RecordFactoryL()
static IMPORT_C CMDBRecordBase *RecordFactoryL(TMDBElementId);
|
|
CreateCopyRecordL()
static IMPORT_C CMDBRecordBase *CreateCopyRecordL(CMDBRecordBase &aCopyFromRecord);
|
|
GetVDataTable()
protected: virtual IMPORT_C Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
protected: virtual IMPORT_C TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
GetVDataTableStatic()
protected: static IMPORT_C Meta::SVDataTableEntry const *GetVDataTableStatic();
|
iVDataTable
protected: const Meta::SVDataTableEntry iVDataTable;
iRecordTag
CMDBField< TInt > iRecordTag;
iRecordName
CMDBField< TDesC > iRecordName;
class CCDServiceRecordBase : public CommsDat::CCDRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDServiceRecordBase
- (No abstract)
Defined in CommsDat::CCDServiceRecordBase
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iServiceEnableLlmnr
, iVDataTable
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
GetVDataTable()
protected: virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
protected: virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
iVDataTable
protected: const Meta::SVDataTableEntry iVDataTable;
iServiceEnableLlmnr
CMDBField< TBool > iServiceEnableLlmnr;
class CCDBearerRecordBase : public CommsDat::CCDRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDBearerRecordBase
- (No abstract)
Defined in CommsDat::CCDBearerRecordBase
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iBearerAgent
, iVDataTable
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
GetVDataTable()
protected: virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
protected: virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
iVDataTable
protected: const Meta::SVDataTableEntry iVDataTable;
iBearerAgent
CMDBField< TDesC > iBearerAgent;
class CCDConnectionPrefsRecord : public CommsDat::CCDRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDConnectionPrefsRecord
- (No abstract)
Defined in CommsDat::CCDConnectionPrefsRecord
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iBearerSet
, iDefaultIAP
, iDialogPref
, iDirection
, iRanking
, iVDataTable
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iRanking
CMDBField< TUint32 > iRanking;
iDirection
CMDBField< TCommDbConnectionDirection > iDirection;
iBearerSet
CMDBField< TUint32 > iBearerSet;
iDialogPref
CMDBField< TUint32 > iDialogPref;
iDefaultIAP
CMDBRecordLink< CCDIAPRecord > iDefaultIAP;
class CCDGlobalSettingsRecord : public CommsDat::CCDRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDGlobalSettingsRecord
- (No abstract)
Defined in CommsDat::CCDGlobalSettingsRecord
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iAcceptIncomingGPRS
, iBearerAvailabilityCheckTSY
, iCDMAMIPMNAAAAuthAlgorithm
, iCDMAMIPMNHAAuthAlgorithm
, iCDMAMIPMaxMNAAASSLength
, iCDMAMIPMaxMNHASSLength
, iCDMAMIPMaxNaiLength
, iCDMAMIPMaxNumNai
, iCDMAOPCapability
, iCDMASimIPAuthSupported
, iCDMASimIPMaxNaiLength
, iCDMASimIPMaxNumNai
, iCDMASimIPMaxSSLength
, iDefaultAgent
, iDefaultNetwork
, iDefaultSnap
, iGPRSAttachMode
, iGPRSClassCBearer
, iLocationForDataAndFax
, iLocationForPhoneServicesAndSMS
, iMaxConnectionAttempts
, iMaxMBufHeap
, iMaxRedialAttempts
, iModemForDataAndFax
, iModemForPhoneServicesAndSMS
, iPromptForSnap
, iSMSBearer
, iSMSReceiveMode
, iVDataTable
, iWAPAccessPoint
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iWAPAccessPoint
CMDBRecordLink< CCDWAPAccessPointRecord > iWAPAccessPoint;
iMaxConnectionAttempts
CMDBField< TUint32 > iMaxConnectionAttempts;
iMaxRedialAttempts
CMDBField< TUint32 > iMaxRedialAttempts;
iSMSBearer
CMDBField< TUint32 > iSMSBearer;
iSMSReceiveMode
CMDBField< TUint32 > iSMSReceiveMode;
iGPRSAttachMode
CMDBField< TUint32 > iGPRSAttachMode;
iAcceptIncomingGPRS
CMDBField< TUint32 > iAcceptIncomingGPRS;
iGPRSClassCBearer
CMDBField< TUint32 > iGPRSClassCBearer;
iModemForDataAndFax
CMDBRecordLink< CCDBearerRecordBase > iModemForDataAndFax;
iModemForPhoneServicesAndSMS
CMDBRecordLink< CCDBearerRecordBase > iModemForPhoneServicesAndSMS;
iLocationForDataAndFax
CMDBRecordLink< CCDLocationRecord > iLocationForDataAndFax;
iLocationForPhoneServicesAndSMS
CMDBRecordLink< CCDLocationRecord > iLocationForPhoneServicesAndSMS;
iMaxMBufHeap
CMDBField< TUint32 > iMaxMBufHeap;
iDefaultAgent
CMDBRecordLink< CCDAgentLookupRecord > iDefaultAgent;
iDefaultNetwork
CMDBRecordLink< CCDNetworkRecord > iDefaultNetwork;
iBearerAvailabilityCheckTSY
CMDBField< TDesC > iBearerAvailabilityCheckTSY;
iCDMAOPCapability
CMDBRecordLink< CCDCDMA2000PacketServiceRecord > iCDMAOPCapability;
iCDMASimIPMaxNumNai
CMDBRecordLink< CCDCDMA2000PacketServiceRecord > iCDMASimIPMaxNumNai;
iCDMASimIPMaxNaiLength
CMDBRecordLink< CCDCDMA2000PacketServiceRecord > iCDMASimIPMaxNaiLength;
iCDMASimIPMaxSSLength
CMDBRecordLink< CCDCDMA2000PacketServiceRecord > iCDMASimIPMaxSSLength;
iCDMASimIPAuthSupported
CMDBRecordLink< CCDCDMA2000PacketServiceRecord > iCDMASimIPAuthSupported;
iCDMAMIPMaxNumNai
CMDBRecordLink< CCDCDMA2000PacketServiceRecord > iCDMAMIPMaxNumNai;
iCDMAMIPMaxNaiLength
CMDBRecordLink< CCDCDMA2000PacketServiceRecord > iCDMAMIPMaxNaiLength;
iCDMAMIPMaxMNAAASSLength
CMDBRecordLink< CCDCDMA2000PacketServiceRecord > iCDMAMIPMaxMNAAASSLength;
iCDMAMIPMNAAAAuthAlgorithm
CMDBRecordLink< CCDCDMA2000PacketServiceRecord > iCDMAMIPMNAAAAuthAlgorithm;
iCDMAMIPMaxMNHASSLength
CMDBRecordLink< CCDCDMA2000PacketServiceRecord > iCDMAMIPMaxMNHASSLength;
iCDMAMIPMNHAAuthAlgorithm
CMDBRecordLink< CCDCDMA2000PacketServiceRecord > iCDMAMIPMNHAAuthAlgorithm;
iDefaultSnap
CMDBRecordLink< CCDAccessPointRecord > iDefaultSnap;
iPromptForSnap
CMDBField< TBool > iPromptForSnap;
class CCDNetworkRecord : public CommsDat::CCDRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDNetworkRecord
- (No abstract)
Defined in CommsDat::CCDNetworkRecord
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iHostName
, iVDataTable
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iHostName
CMDBField< TDesC > iHostName;
class CCDLocationRecord : public CommsDat::CCDRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDLocationRecord
- (No abstract)
Defined in CommsDat::CCDLocationRecord
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iAreaCode
, iDialOutCode
, iDisableCallWaitingCode
, iIntlPrefixCode
, iMobile
, iNatCode
, iNatPrefixCode
, iPauseAfterDialOut
, iUsePulseDial
, iVDataTable
, iWaitForDialTone
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iIntlPrefixCode
CMDBField< TDesC > iIntlPrefixCode;
iNatPrefixCode
CMDBField< TDesC > iNatPrefixCode;
iNatCode
CMDBField< TDesC > iNatCode;
iAreaCode
CMDBField< TDesC > iAreaCode;
iDialOutCode
CMDBField< TDesC > iDialOutCode;
iDisableCallWaitingCode
CMDBField< TDesC > iDisableCallWaitingCode;
iMobile
CMDBField< TBool > iMobile;
iUsePulseDial
CMDBField< TBool > iUsePulseDial;
iWaitForDialTone
CMDBField< TBool > iWaitForDialTone;
iPauseAfterDialOut
CMDBField< TUint32 > iPauseAfterDialOut;
class CCDIAPRecord : public CommsDat::CCDRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDIAPRecord
- (No abstract)
Defined in CommsDat::CCDIAPRecord
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iAppSid
, iBearer
, iBearerType
, iLocation
, iNetwork
, iNetworkWeighting
, iService
, iServiceType
, iVDataTable
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iServiceType
CMDBField< TDesC > iServiceType;
iService
CMDBRecordLink< CCDServiceRecordBase > iService;
iBearerType
CMDBField< TDesC > iBearerType;
iBearer
CMDBRecordLink< CCDBearerRecordBase > iBearer;
iNetwork
CMDBRecordLink< CCDNetworkRecord > iNetwork;
iNetworkWeighting
CMDBField< TUint32 > iNetworkWeighting;
iLocation
CMDBRecordLink< CCDLocationRecord > iLocation;
iAppSid
CMDBField< TUint32 > iAppSid;
class CCDWAPAccessPointRecord : public CommsDat::CCDRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDWAPAccessPointRecord
- (No abstract)
Defined in CommsDat::CCDWAPAccessPointRecord
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iVDataTable
, iWAPCurrentBearer
, iWAPStartPage
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iWAPCurrentBearer
CMDBField< TDesC > iWAPCurrentBearer;
iWAPStartPage
CMDBField< TDesC > iWAPStartPage;
class CCDDialOutISPRecord : public CommsDat::CCDServiceRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDServiceRecordBase
- (No abstract)
CommsDat::CCDDialOutISPRecord
- (No abstract)
Defined in CommsDat::CCDDialOutISPRecord
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iAckTimer
, iAiur
, iAsymmetry
, iBearerCe
, iBearerName
, iBearerProtocol
, iBearerService
, iBearerSpeed
, iBearerType
, iCallbackTimeout
, iChannelCoding
, iChargecard
, iConfigDaemonManagerName
, iConfigDaemonName
, iDefaultTelNum
, iDescription
, iDialResolution
, iDisablePlainTextAuth
, iDisplayPct
, iEnableIpHeaderComp
, iEnableLcpExtension
, iEnableSwComp
, iIfAuthName
, iIfAuthPass
, iIfAuthRetries
, iIfCallbackEnabled
, iIfCallbackInfo
, iIfCallbackType
, iIfNetworks
, iIfParams
, iIfPromptForAuth
, iIfServerMode
, iInitString
, iIp6DnsAddrFromServer
, iIp6NameServer1
, iIp6NameServer2
, iIpAddr
, iIpAddrFromServer
, iIpAddrLeaseValidFrom
, iIpAddrLeaseValidTo
, iIpDnsAddrFromServer
, iIpGateway
, iIpNameServer1
, iIpNameServer2
, iIpNetMask
, iIwfToMs
, iLoginName
, iLoginPass
, iLoginScript
, iMaximumTimeSlots
, iMsToIwf
, iPromptForLogin
, iRequestedTimeSlots
, iResequencePeriod
, iRetransmissionAttempts
, iRlpVersion
, iType
, iUseEdge
, iUseLoginScript
, iUserInitUpgrade
, iV42Codewords
, iV42Compression
, iV42MaxLength
, iVDataTable
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CCDServiceRecordBase
:
iServiceEnableLlmnr
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iDescription
CMDBField< TDesC > iDescription;
iType
CMDBField< TUint32 > iType;
iDefaultTelNum
CMDBField< TDesC > iDefaultTelNum;
iDialResolution
CMDBField< TBool > iDialResolution;
iChargecard
CMDBRecordLink< CCDChargecardRecord > iChargecard;
iUseLoginScript
CMDBField< TBool > iUseLoginScript;
iLoginScript
CMDBField< TDesC > iLoginScript;
iPromptForLogin
CMDBField< TBool > iPromptForLogin;
iLoginName
CMDBField< TDesC > iLoginName;
iLoginPass
CMDBField< TDesC > iLoginPass;
iDisplayPct
CMDBField< TBool > iDisplayPct;
iIfParams
CMDBField< TDesC > iIfParams;
iIfNetworks
CMDBField< TDesC > iIfNetworks;
iIfPromptForAuth
CMDBField< TBool > iIfPromptForAuth;
iIfAuthName
CMDBField< TDesC > iIfAuthName;
iIfAuthPass
CMDBField< TDesC > iIfAuthPass;
iIfAuthRetries
CMDBField< TUint32 > iIfAuthRetries;
iIfCallbackEnabled
CMDBField< TBool > iIfCallbackEnabled;
iIfCallbackType
CMDBField< TUint32 > iIfCallbackType;
iIfCallbackInfo
CMDBField< TDesC8 > iIfCallbackInfo;
iCallbackTimeout
CMDBField< TUint32 > iCallbackTimeout;
iIfServerMode
CMDBField< TBool > iIfServerMode;
iIpAddrFromServer
CMDBField< TBool > iIpAddrFromServer;
iIpAddr
CMDBField< TDesC > iIpAddr;
iIpNetMask
CMDBField< TDesC > iIpNetMask;
iIpGateway
CMDBField< TDesC > iIpGateway;
iIpDnsAddrFromServer
CMDBField< TBool > iIpDnsAddrFromServer;
iIpNameServer1
CMDBField< TDesC > iIpNameServer1;
iIpNameServer2
CMDBField< TDesC > iIpNameServer2;
iIp6DnsAddrFromServer
CMDBField< TBool > iIp6DnsAddrFromServer;
iIp6NameServer1
CMDBField< TDesC > iIp6NameServer1;
iIp6NameServer2
CMDBField< TDesC > iIp6NameServer2;
iIpAddrLeaseValidFrom
CMDBField< TDesC > iIpAddrLeaseValidFrom;
iIpAddrLeaseValidTo
CMDBField< TDesC > iIpAddrLeaseValidTo;
iConfigDaemonManagerName
CMDBField< TDesC > iConfigDaemonManagerName;
iConfigDaemonName
CMDBField< TDesC > iConfigDaemonName;
iEnableIpHeaderComp
CMDBField< TBool > iEnableIpHeaderComp;
iEnableLcpExtension
CMDBField< TBool > iEnableLcpExtension;
iDisablePlainTextAuth
CMDBField< TBool > iDisablePlainTextAuth;
iEnableSwComp
CMDBField< TBool > iEnableSwComp;
iBearerName
CMDBField< TUint32 > iBearerName;
iBearerSpeed
CMDBField< TUint32 > iBearerSpeed;
iBearerCe
CMDBField< TUint32 > iBearerCe;
iInitString
CMDBField< TDesC8 > iInitString;
iBearerType
CMDBField< TUint32 > iBearerType;
iChannelCoding
CMDBField< TUint32 > iChannelCoding;
iAiur
CMDBField< TUint32 > iAiur;
iRequestedTimeSlots
CMDBField< TUint32 > iRequestedTimeSlots;
iMaximumTimeSlots
CMDBField< TUint32 > iMaximumTimeSlots;
iBearerService
CMDBField< TUint32 > iBearerService;
iBearerProtocol
CMDBField< TUint32 > iBearerProtocol;
iRlpVersion
CMDBField< TUint32 > iRlpVersion;
iIwfToMs
CMDBField< TUint32 > iIwfToMs;
iMsToIwf
CMDBField< TUint32 > iMsToIwf;
iAckTimer
CMDBField< TUint32 > iAckTimer;
iRetransmissionAttempts
CMDBField< TUint32 > iRetransmissionAttempts;
iResequencePeriod
CMDBField< TUint32 > iResequencePeriod;
iV42Compression
CMDBField< TUint32 > iV42Compression;
iV42Codewords
CMDBField< TUint32 > iV42Codewords;
iV42MaxLength
CMDBField< TUint32 > iV42MaxLength;
iAsymmetry
CMDBField< TUint32 > iAsymmetry;
iUserInitUpgrade
CMDBField< TBool > iUserInitUpgrade;
iUseEdge
CMDBField< TBool > iUseEdge;
class CCDDialInISPRecord : public CommsDat::CCDServiceRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDServiceRecordBase
- (No abstract)
CommsDat::CCDDialInISPRecord
- (No abstract)
Defined in CommsDat::CCDDialInISPRecord
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iAuthentication
, iBearerCe
, iBearerName
, iBearerSpeed
, iDescription
, iDisablePlainTextAuth
, iEnableIpHeaderComp
, iEnableLcpExtension
, iEnableSwComp
, iIfAuthRetries
, iIfNetworks
, iIfParams
, iInitString
, iIp6DnsAddrFromServer
, iIp6NameServer1
, iIp6NameServer2
, iIpAddr
, iIpAddrFromServer
, iIpDnsAddrFromServer
, iIpGateway
, iIpNameServer1
, iIpNameServer2
, iIpNetMask
, iLoginScript
, iType
, iUseEdge
, iUseLoginScript
, iVDataTable
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CCDServiceRecordBase
:
iServiceEnableLlmnr
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iDescription
CMDBField< TDesC > iDescription;
iType
CMDBField< TUint32 > iType;
iUseLoginScript
CMDBField< TBool > iUseLoginScript;
iLoginScript
CMDBField< TDesC > iLoginScript;
iAuthentication
CMDBField< TUint32 > iAuthentication;
iIfAuthRetries
CMDBField< TUint32 > iIfAuthRetries;
iIfParams
CMDBField< TDesC > iIfParams;
iIfNetworks
CMDBField< TDesC > iIfNetworks;
iIpAddrFromServer
CMDBField< TBool > iIpAddrFromServer;
iIpAddr
CMDBField< TDesC > iIpAddr;
iIpNetMask
CMDBField< TDesC > iIpNetMask;
iIpGateway
CMDBField< TDesC > iIpGateway;
iIpDnsAddrFromServer
CMDBField< TBool > iIpDnsAddrFromServer;
iIpNameServer1
CMDBField< TDesC > iIpNameServer1;
iIpNameServer2
CMDBField< TDesC > iIpNameServer2;
iIp6DnsAddrFromServer
CMDBField< TBool > iIp6DnsAddrFromServer;
iIp6NameServer1
CMDBField< TDesC > iIp6NameServer1;
iIp6NameServer2
CMDBField< TDesC > iIp6NameServer2;
iEnableIpHeaderComp
CMDBField< TBool > iEnableIpHeaderComp;
iEnableLcpExtension
CMDBField< TBool > iEnableLcpExtension;
iDisablePlainTextAuth
CMDBField< TBool > iDisablePlainTextAuth;
iEnableSwComp
CMDBField< TBool > iEnableSwComp;
iBearerName
CMDBField< TUint32 > iBearerName;
iBearerSpeed
CMDBField< TUint32 > iBearerSpeed;
iBearerCe
CMDBField< TUint32 > iBearerCe;
iInitString
CMDBField< TDesC8 > iInitString;
iUseEdge
CMDBField< TBool > iUseEdge;
class CCDLANServiceRecord : public CommsDat::CCDServiceRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDServiceRecordBase
- (No abstract)
CommsDat::CCDLANServiceRecord
- (No abstract)
Defined in CommsDat::CCDLANServiceRecord
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iConfigDaemonManagerName
, iConfigDaemonName
, iIfNetworks
, iIp6DnsAddrFromServer
, iIp6NameServer1
, iIp6NameServer2
, iIpAddr
, iIpAddrFromServer
, iIpAddrLeaseValidFrom
, iIpAddrLeaseValidTo
, iIpDnsAddrFromServer
, iIpGateway
, iIpNameServer1
, iIpNameServer2
, iIpNetmask
, iServiceExtensionTableName
, iServiceExtensionTableRecordId
, iVDataTable
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CCDServiceRecordBase
:
iServiceEnableLlmnr
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iIfNetworks
CMDBField< TDesC > iIfNetworks;
iIpNetmask
CMDBField< TDesC > iIpNetmask;
iIpGateway
CMDBField< TDesC > iIpGateway;
iIpAddrFromServer
CMDBField< TBool > iIpAddrFromServer;
iIpAddr
CMDBField< TDesC > iIpAddr;
iIpDnsAddrFromServer
CMDBField< TBool > iIpDnsAddrFromServer;
iIpNameServer1
CMDBField< TDesC > iIpNameServer1;
iIpNameServer2
CMDBField< TDesC > iIpNameServer2;
iIp6DnsAddrFromServer
CMDBField< TBool > iIp6DnsAddrFromServer;
iIp6NameServer1
CMDBField< TDesC > iIp6NameServer1;
iIp6NameServer2
CMDBField< TDesC > iIp6NameServer2;
iIpAddrLeaseValidFrom
CMDBField< TDesC > iIpAddrLeaseValidFrom;
iIpAddrLeaseValidTo
CMDBField< TDesC > iIpAddrLeaseValidTo;
iConfigDaemonManagerName
CMDBField< TDesC > iConfigDaemonManagerName;
iConfigDaemonName
CMDBField< TDesC > iConfigDaemonName;
iServiceExtensionTableName
CMDBField< TDesC > iServiceExtensionTableName;
iServiceExtensionTableRecordId
CMDBRecordLink< TUint32 > iServiceExtensionTableRecordId;
class CCDVPNServiceRecord : public CommsDat::CCDServiceRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDServiceRecordBase
- (No abstract)
CommsDat::CCDVPNServiceRecord
- (No abstract)
Defined in CommsDat::CCDVPNServiceRecord
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iServiceIAP
, iServiceNetwork
, iServicePolicy
, iVDataTable
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CCDServiceRecordBase
:
iServiceEnableLlmnr
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iServicePolicy
CMDBField< TDesC > iServicePolicy;
iServiceIAP
CMDBRecordLink< CCDIAPRecord > iServiceIAP;
iServiceNetwork
CMDBRecordLink< CCDNetworkRecord > iServiceNetwork;
class CCDCDMA2000PacketServiceRecord : public CommsDat::CCDServiceRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDServiceRecordBase
- (No abstract)
CommsDat::CCDCDMA2000PacketServiceRecord
- (No abstract)
Defined in CommsDat::CCDCDMA2000PacketServiceRecord
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iAccptFwdLoss
, iAccptFwdMaxdelay
, iAccptRevLoss
, iAccptRevMaxdelay
, iAnonymousAccess
, iApType
, iAuthRetries
, iCDMAFchMux
, iCDMAHomeAgentAddress
, iCDMAMobileIP
, iCDMAMobileIPTimeout
, iCDMASchMux
, iConfigDaemonManagerName
, iConfigDaemonName
, iDataCompression
, iDisablePlainTextAuth
, iEnableIpHeaderComp
, iEnableLCPExtension
, iHeaderCompression
, iIfAuthName
, iIfAuthPass
, iIfNetworks
, iIfParams
, iIfPromptForAuth
, iIp6DNSAddrFromServer
, iIp6NameServer1
, iIp6NameServer2
, iIpAddr
, iIpAddrFromServer
, iIpAddrLeaseValidFrom
, iIpAddrLeaseValidTo
, iIpDNSAddrFromServer
, iIpGateway
, iIpNameServer1
, iIpNameServer2
, iIpNetMask
, iIwfName
, iMIPHomeAddress
, iMIPMnAaaAuthAlgorithm
, iMIPMnAaaSpi
, iMIPMnAaaSpiIndicator
, iMIPMnAaaSsData
, iMIPMnHaAuthAlgorithm
, iMIPMnHaSpi
, iMIPMnHaSpiIndicator
, iMIPMnHaSsData
, iMIPPrimaryHomeAgent
, iMIPSecondaryHomeAgent
, iMIPTBit
, iMinFwdBitrate
, iMinRevBitrate
, iNAIType
, iPdpAddress
, iPdpType
, iQosWarningTimeout
, iReqFwdBitrate
, iReqFwdLoss
, iReqFwdMaxdelay
, iReqFwdPriority
, iReqRevBitrate
, iReqRevLoss
, iReqRevMaxdelay
, iReqRevPriority
, iRlpMode
, iServiceEnableSwComp
, iServiceIfExternIpConfigAlwaysRejectAuth
, iServiceOption
, iSimIPAuthAlgorithm
, iSimIPChapSSHandle
, iSimIPPapSSHandle
, iVDataTable
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CCDServiceRecordBase
:
iServiceEnableLlmnr
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iCDMAFchMux
CMDBField< TUint32 > iCDMAFchMux;
iCDMASchMux
CMDBField< TUint32 > iCDMASchMux;
iIwfName
CMDBField< TDesC > iIwfName;
iServiceOption
CMDBField< TUint32 > iServiceOption;
iPdpType
CMDBField< TUint32 > iPdpType;
iPdpAddress
CMDBField< TDesC > iPdpAddress;
iReqFwdPriority
CMDBField< TUint32 > iReqFwdPriority;
iReqRevPriority
CMDBField< TUint32 > iReqRevPriority;
iReqFwdBitrate
CMDBField< TUint32 > iReqFwdBitrate;
iReqRevBitrate
CMDBField< TUint32 > iReqRevBitrate;
iReqFwdLoss
CMDBField< TUint32 > iReqFwdLoss;
iReqRevLoss
CMDBField< TUint32 > iReqRevLoss;
iReqFwdMaxdelay
CMDBField< TUint32 > iReqFwdMaxdelay;
iReqRevMaxdelay
CMDBField< TUint32 > iReqRevMaxdelay;
iMinFwdBitrate
CMDBField< TUint32 > iMinFwdBitrate;
iMinRevBitrate
CMDBField< TUint32 > iMinRevBitrate;
iAccptFwdLoss
CMDBField< TUint32 > iAccptFwdLoss;
iAccptRevLoss
CMDBField< TUint32 > iAccptRevLoss;
iAccptFwdMaxdelay
CMDBField< TUint32 > iAccptFwdMaxdelay;
iAccptRevMaxdelay
CMDBField< TUint32 > iAccptRevMaxdelay;
iDataCompression
CMDBField< TBool > iDataCompression;
iHeaderCompression
CMDBField< TBool > iHeaderCompression;
iAnonymousAccess
CMDBField< TBool > iAnonymousAccess;
iIfParams
CMDBField< TDesC > iIfParams;
iIfNetworks
CMDBField< TDesC > iIfNetworks;
iIfPromptForAuth
CMDBField< TBool > iIfPromptForAuth;
iIfAuthName
CMDBField< TDesC > iIfAuthName;
iIfAuthPass
CMDBField< TDesC > iIfAuthPass;
iAuthRetries
CMDBField< TUint32 > iAuthRetries;
iIpNetMask
CMDBField< TDesC > iIpNetMask;
iIpGateway
CMDBField< TDesC > iIpGateway;
iIpAddrFromServer
CMDBField< TBool > iIpAddrFromServer;
iIpAddr
CMDBField< TDesC > iIpAddr;
iIpDNSAddrFromServer
CMDBField< TBool > iIpDNSAddrFromServer;
iIpNameServer1
CMDBField< TDesC > iIpNameServer1;
iIpNameServer2
CMDBField< TDesC > iIpNameServer2;
iIp6DNSAddrFromServer
CMDBField< TBool > iIp6DNSAddrFromServer;
iIp6NameServer1
CMDBField< TDesC > iIp6NameServer1;
iIp6NameServer2
CMDBField< TDesC > iIp6NameServer2;
iIpAddrLeaseValidFrom
CMDBField< TDesC > iIpAddrLeaseValidFrom;
iIpAddrLeaseValidTo
CMDBField< TDesC > iIpAddrLeaseValidTo;
iConfigDaemonManagerName
CMDBField< TDesC > iConfigDaemonManagerName;
iConfigDaemonName
CMDBField< TDesC > iConfigDaemonName;
iEnableLCPExtension
CMDBField< TBool > iEnableLCPExtension;
iDisablePlainTextAuth
CMDBField< TBool > iDisablePlainTextAuth;
iApType
CMDBField< TUint32 > iApType;
iQosWarningTimeout
CMDBField< TUint32 > iQosWarningTimeout;
iRlpMode
CMDBField< TUint32 > iRlpMode;
iNAIType
CMDBField< TUint32 > iNAIType;
iSimIPAuthAlgorithm
CMDBField< TUint32 > iSimIPAuthAlgorithm;
iSimIPPapSSHandle
CMDBField< TUint32 > iSimIPPapSSHandle;
iSimIPChapSSHandle
CMDBField< TUint32 > iSimIPChapSSHandle;
iMIPTBit
CMDBField< TUint32 > iMIPTBit;
iMIPHomeAddress
CMDBField< TDesC > iMIPHomeAddress;
iMIPPrimaryHomeAgent
CMDBField< TDesC > iMIPPrimaryHomeAgent;
iMIPSecondaryHomeAgent
CMDBField< TDesC > iMIPSecondaryHomeAgent;
iMIPMnAaaAuthAlgorithm
CMDBField< TUint32 > iMIPMnAaaAuthAlgorithm;
iMIPMnAaaSpiIndicator
CMDBField< TBool > iMIPMnAaaSpiIndicator;
iMIPMnAaaSpi
CMDBField< TUint32 > iMIPMnAaaSpi;
iMIPMnHaAuthAlgorithm
CMDBField< TUint32 > iMIPMnHaAuthAlgorithm;
iMIPMnHaSpiIndicator
CMDBField< TBool > iMIPMnHaSpiIndicator;
iMIPMnHaSpi
CMDBField< TUint32 > iMIPMnHaSpi;
iMIPMnAaaSsData
CMDBField< TDesC > iMIPMnAaaSsData;
iMIPMnHaSsData
CMDBField< TDesC > iMIPMnHaSsData;
iServiceEnableSwComp
CMDBField< TUint32 > iServiceEnableSwComp;
iServiceIfExternIpConfigAlwaysRejectAuth
CMDBField< TBool > iServiceIfExternIpConfigAlwaysRejectAuth;
iEnableIpHeaderComp
CMDBField< TBool > iEnableIpHeaderComp;
iCDMAMobileIP
CMDBField< TBool > iCDMAMobileIP;
iCDMAMobileIPTimeout
CMDBField< TUint32 > iCDMAMobileIPTimeout;
iCDMAHomeAgentAddress
CMDBField< TDesC > iCDMAHomeAgentAddress;
class CCDWCDMAPacketServiceRecord : public CommsDat::CCDServiceRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDServiceRecordBase
- (No abstract)
CommsDat::CCDWCDMAPacketServiceRecord
- (No abstract)
Defined in CommsDat::CCDWCDMAPacketServiceRecord
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iGPRSAPN
, iGPRSAPType
, iGPRSAnonymousAccess
, iGPRSConfigDaemonManagerName
, iGPRSConfigDaemonName
, iGPRSDataCompression
, iGPRSDisablePlainTextAuth
, iGPRSEnableLCPExtension
, iGPRSHeaderCompression
, iGPRSIP6DNSAddrFromServer
, iGPRSIP6NameServer1
, iGPRSIP6NameServer2
, iGPRSIPAddr
, iGPRSIPAddrFromServer
, iGPRSIPAddrLeaseValidFrom
, iGPRSIPAddrLeaseValidTo
, iGPRSIPDNSAddrFromServer
, iGPRSIPGateway
, iGPRSIPNameServer1
, iGPRSIPNameServer2
, iGPRSIPNetMask
, iGPRSIfAuthName
, iGPRSIfAuthPass
, iGPRSIfAuthRetries
, iGPRSIfNetworks
, iGPRSIfParams
, iGPRSIfPromptForAuth
, iGPRSMinDelay
, iGPRSMinMeanThroughput
, iGPRSMinPeakThroughput
, iGPRSMinPrecedence
, iGPRSMinReliability
, iGPRSPDPAddress
, iGPRSPDPType
, iGPRSQOSWarningTimeOut
, iGPRSReqDelay
, iGPRSReqMeanThroughput
, iGPRSReqPeakThroughput
, iGPRSReqPrecedence
, iGPRSReqReliability
, iGPRSUseEdge
, iRecordInfo
, iUmtsR99QoSAndOnTable
, iVDataTable
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CCDServiceRecordBase
:
iServiceEnableLlmnr
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iGPRSAPN
CMDBField< TDesC > iGPRSAPN;
iGPRSPDPType
CMDBField< TUint32 > iGPRSPDPType;
iGPRSPDPAddress
CMDBField< TDesC > iGPRSPDPAddress;
iGPRSReqPrecedence
CMDBField< TUint32 > iGPRSReqPrecedence;
iGPRSReqDelay
CMDBField< TUint32 > iGPRSReqDelay;
iGPRSReqReliability
CMDBField< TUint32 > iGPRSReqReliability;
iGPRSReqPeakThroughput
CMDBField< TUint32 > iGPRSReqPeakThroughput;
iGPRSReqMeanThroughput
CMDBField< TUint32 > iGPRSReqMeanThroughput;
iGPRSMinPrecedence
CMDBField< TUint32 > iGPRSMinPrecedence;
iGPRSMinDelay
CMDBField< TUint32 > iGPRSMinDelay;
iGPRSMinReliability
CMDBField< TUint32 > iGPRSMinReliability;
iGPRSMinPeakThroughput
CMDBField< TUint32 > iGPRSMinPeakThroughput;
iGPRSMinMeanThroughput
CMDBField< TUint32 > iGPRSMinMeanThroughput;
iGPRSDataCompression
CMDBField< TBool > iGPRSDataCompression;
iGPRSHeaderCompression
CMDBField< TBool > iGPRSHeaderCompression;
iGPRSUseEdge
CMDBField< TBool > iGPRSUseEdge;
iGPRSAnonymousAccess
CMDBField< TBool > iGPRSAnonymousAccess;
iGPRSIfParams
CMDBField< TDesC > iGPRSIfParams;
iGPRSIfNetworks
CMDBField< TDesC > iGPRSIfNetworks;
iGPRSIfPromptForAuth
CMDBField< TBool > iGPRSIfPromptForAuth;
iGPRSIfAuthName
CMDBField< TDesC > iGPRSIfAuthName;
iGPRSIfAuthPass
CMDBField< TDesC > iGPRSIfAuthPass;
iGPRSIfAuthRetries
CMDBField< TUint32 > iGPRSIfAuthRetries;
iGPRSIPNetMask
CMDBField< TDesC > iGPRSIPNetMask;
iGPRSIPGateway
CMDBField< TDesC > iGPRSIPGateway;
iGPRSIPAddrFromServer
CMDBField< TBool > iGPRSIPAddrFromServer;
iGPRSIPAddr
CMDBField< TDesC > iGPRSIPAddr;
iGPRSIPDNSAddrFromServer
CMDBField< TBool > iGPRSIPDNSAddrFromServer;
iGPRSIPNameServer1
CMDBField< TDesC > iGPRSIPNameServer1;
iGPRSIPNameServer2
CMDBField< TDesC > iGPRSIPNameServer2;
iGPRSIP6DNSAddrFromServer
CMDBField< TBool > iGPRSIP6DNSAddrFromServer;
iGPRSIP6NameServer1
CMDBField< TDesC > iGPRSIP6NameServer1;
iGPRSIP6NameServer2
CMDBField< TDesC > iGPRSIP6NameServer2;
iGPRSIPAddrLeaseValidFrom
CMDBField< TDesC > iGPRSIPAddrLeaseValidFrom;
iGPRSIPAddrLeaseValidTo
CMDBField< TDesC > iGPRSIPAddrLeaseValidTo;
iGPRSConfigDaemonManagerName
CMDBField< TDesC > iGPRSConfigDaemonManagerName;
iGPRSConfigDaemonName
CMDBField< TDesC > iGPRSConfigDaemonName;
iGPRSEnableLCPExtension
CMDBField< TBool > iGPRSEnableLCPExtension;
iGPRSDisablePlainTextAuth
CMDBField< TBool > iGPRSDisablePlainTextAuth;
iGPRSAPType
CMDBField< TUint32 > iGPRSAPType;
iGPRSQOSWarningTimeOut
CMDBField< TUint32 > iGPRSQOSWarningTimeOut;
iUmtsR99QoSAndOnTable
CMDBRecordLink< CCDUmtsR99QoSAndOnTableRecord > iUmtsR99QoSAndOnTable;
iRecordInfo
const SRecordTypeInfo *const iRecordInfo;
class CCDOutgoingGprsRecord : public CommsDat::CCDWCDMAPacketServiceRecord;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDServiceRecordBase
- (No abstract)
CommsDat::CCDWCDMAPacketServiceRecord
- (No abstract)
CommsDat::CCDOutgoingGprsRecord
- (No abstract)
Defined in CommsDat::CCDOutgoingGprsRecord
:
GetAttribPtr()
, GetVDataTable()
, iVDataTable
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CCDServiceRecordBase
:
iServiceEnableLlmnr
Inherited from CommsDat::CCDWCDMAPacketServiceRecord
:
GetRecordInfo()
,
iGPRSAPN
,
iGPRSAPType
,
iGPRSAnonymousAccess
,
iGPRSConfigDaemonManagerName
,
iGPRSConfigDaemonName
,
iGPRSDataCompression
,
iGPRSDisablePlainTextAuth
,
iGPRSEnableLCPExtension
,
iGPRSHeaderCompression
,
iGPRSIP6DNSAddrFromServer
,
iGPRSIP6NameServer1
,
iGPRSIP6NameServer2
,
iGPRSIPAddr
,
iGPRSIPAddrFromServer
,
iGPRSIPAddrLeaseValidFrom
,
iGPRSIPAddrLeaseValidTo
,
iGPRSIPDNSAddrFromServer
,
iGPRSIPGateway
,
iGPRSIPNameServer1
,
iGPRSIPNameServer2
,
iGPRSIPNetMask
,
iGPRSIfAuthName
,
iGPRSIfAuthPass
,
iGPRSIfAuthRetries
,
iGPRSIfNetworks
,
iGPRSIfParams
,
iGPRSIfPromptForAuth
,
iGPRSMinDelay
,
iGPRSMinMeanThroughput
,
iGPRSMinPeakThroughput
,
iGPRSMinPrecedence
,
iGPRSMinReliability
,
iGPRSPDPAddress
,
iGPRSPDPType
,
iGPRSQOSWarningTimeOut
,
iGPRSReqDelay
,
iGPRSReqMeanThroughput
,
iGPRSReqPeakThroughput
,
iGPRSReqPrecedence
,
iGPRSReqReliability
,
iGPRSUseEdge
,
iRecordInfo
,
iUmtsR99QoSAndOnTable
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
class CCDIncomingGprsRecord : public CommsDat::CCDWCDMAPacketServiceRecord;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDServiceRecordBase
- (No abstract)
CommsDat::CCDWCDMAPacketServiceRecord
- (No abstract)
CommsDat::CCDIncomingGprsRecord
- (No abstract)
Defined in CommsDat::CCDIncomingGprsRecord
:
GetAttribPtr()
, GetVDataTable()
, iVDataTable
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CCDServiceRecordBase
:
iServiceEnableLlmnr
Inherited from CommsDat::CCDWCDMAPacketServiceRecord
:
GetRecordInfo()
,
iGPRSAPN
,
iGPRSAPType
,
iGPRSAnonymousAccess
,
iGPRSConfigDaemonManagerName
,
iGPRSConfigDaemonName
,
iGPRSDataCompression
,
iGPRSDisablePlainTextAuth
,
iGPRSEnableLCPExtension
,
iGPRSHeaderCompression
,
iGPRSIP6DNSAddrFromServer
,
iGPRSIP6NameServer1
,
iGPRSIP6NameServer2
,
iGPRSIPAddr
,
iGPRSIPAddrFromServer
,
iGPRSIPAddrLeaseValidFrom
,
iGPRSIPAddrLeaseValidTo
,
iGPRSIPDNSAddrFromServer
,
iGPRSIPGateway
,
iGPRSIPNameServer1
,
iGPRSIPNameServer2
,
iGPRSIPNetMask
,
iGPRSIfAuthName
,
iGPRSIfAuthPass
,
iGPRSIfAuthRetries
,
iGPRSIfNetworks
,
iGPRSIfParams
,
iGPRSIfPromptForAuth
,
iGPRSMinDelay
,
iGPRSMinMeanThroughput
,
iGPRSMinPeakThroughput
,
iGPRSMinPrecedence
,
iGPRSMinReliability
,
iGPRSPDPAddress
,
iGPRSPDPType
,
iGPRSQOSWarningTimeOut
,
iGPRSReqDelay
,
iGPRSReqMeanThroughput
,
iGPRSReqPeakThroughput
,
iGPRSReqPrecedence
,
iGPRSReqReliability
,
iGPRSUseEdge
,
iRecordInfo
,
iUmtsR99QoSAndOnTable
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
class CCDUmtsR99QoSAndOnTableRecord : public CommsDat::CCDRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDUmtsR99QoSAndOnTableRecord
- (No abstract)
Defined in CommsDat::CCDUmtsR99QoSAndOnTableRecord
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iGPRSMaxBER
, iGPRSMaxSDUErrorRatio
, iGPRSMaxTransferDelay
, iGPRSMinAcceptableMaxSDUSize
, iGPRSMinDeliverErroneousSDU
, iGPRSMinDeliveryOrder
, iGPRSMinGuaranteedDownlinkRate
, iGPRSMinGuaranteedUplinkRate
, iGPRSMinTrafficClass
, iGPRSMinTrafficHandlingPriority
, iGPRSReqBER
, iGPRSReqDeliverErroneousSDU
, iGPRSReqDeliveryOrder
, iGPRSReqGuaranteedDownlinkRate
, iGPRSReqGuaranteedUplinkRate
, iGPRSReqMaxDownlinkRate
, iGPRSReqMaxSDUSize
, iGPRSReqMaxUplinkRate
, iGPRSReqMinDownlinkRate
, iGPRSReqMinUplinkRate
, iGPRSReqSDUErrorRatio
, iGPRSReqTrafficClass
, iGPRSReqTrafficHandlingPriority
, iGPRSReqTransferDelay
, iGPRSSignallingIndication
, iGPRSSourceStatisticsDescriptor
, iGPRS_ImCnSignallingIndication
, iRecordInfo
, iVDataTable
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iGPRSReqTrafficClass
CMDBField< RPacketQoS::TTrafficClass > iGPRSReqTrafficClass;
Requested traffic class.
iGPRSMinTrafficClass
CMDBField< RPacketQoS::TTrafficClass > iGPRSMinTrafficClass;
Minimum acceptable traffic class.
iGPRSReqDeliveryOrder
CMDBField< RPacketQoS::TDeliveryOrder > iGPRSReqDeliveryOrder;
Requested value for sequential SDU delivery.
iGPRSMinDeliveryOrder
CMDBField< RPacketQoS::TDeliveryOrder > iGPRSMinDeliveryOrder;
Minimum acceptable value for sequential SDU delivery.
iGPRSReqDeliverErroneousSDU
CMDBField< RPacketQoS::TErroneousSDUDelivery > iGPRSReqDeliverErroneousSDU;
Requested value for erroneous SDU delivery.
iGPRSMinDeliverErroneousSDU
CMDBField< RPacketQoS::TErroneousSDUDelivery > iGPRSMinDeliverErroneousSDU;
Minimum acceptable value for erroneous SDU delivery.
iGPRSReqMaxSDUSize
CMDBField< TInt32 > iGPRSReqMaxSDUSize;
Request maximum SDU size.
iGPRSMinAcceptableMaxSDUSize
CMDBField< TInt32 > iGPRSMinAcceptableMaxSDUSize;
Minimum acceptable SDU size.
iGPRSReqMaxUplinkRate
CMDBField< TInt32 > iGPRSReqMaxUplinkRate;
Requested maximum bit rates on uplink.
iGPRSReqMinUplinkRate
CMDBField< TInt32 > iGPRSReqMinUplinkRate;
Requested minimum bit rates on uplink.
iGPRSReqMaxDownlinkRate
CMDBField< TInt32 > iGPRSReqMaxDownlinkRate;
Requested maximum bit rates on downlink.
iGPRSReqMinDownlinkRate
CMDBField< TInt32 > iGPRSReqMinDownlinkRate;
Requested minimum bit rates on downlink.
iGPRSReqBER
CMDBField< RPacketQoS::TBitErrorRatio > iGPRSReqBER;
Requested target BER.
iGPRSMaxBER
CMDBField< RPacketQoS::TBitErrorRatio > iGPRSMaxBER;
Maximum acceptable target BER.
iGPRSReqSDUErrorRatio
CMDBField< RPacketQoS::TSDUErrorRatio > iGPRSReqSDUErrorRatio;
Requested target SDU error ratio.
iGPRSMaxSDUErrorRatio
CMDBField< RPacketQoS::TSDUErrorRatio > iGPRSMaxSDUErrorRatio;
Maximum acceptable target SDU error ratio.
iGPRSReqTrafficHandlingPriority
CMDBField< RPacketQoS::TTrafficHandlingPriority > iGPRSReqTrafficHandlingPriority;
Requested traffic handling priority.
iGPRSMinTrafficHandlingPriority
CMDBField< RPacketQoS::TTrafficHandlingPriority > iGPRSMinTrafficHandlingPriority;
Minimum acceptable traffic handling priority.
iGPRSReqTransferDelay
CMDBField< TInt32 > iGPRSReqTransferDelay;
Requested transfer delay (in milliseconds).
iGPRSMaxTransferDelay
CMDBField< TInt32 > iGPRSMaxTransferDelay;
Maximum acceptable transfer delay (in milliseconds).
iGPRSReqGuaranteedUplinkRate
CMDBField< TInt32 > iGPRSReqGuaranteedUplinkRate;
Requested guaranteed bit rates on uplink.
iGPRSMinGuaranteedUplinkRate
CMDBField< TInt32 > iGPRSMinGuaranteedUplinkRate;
Minimum acceptable guaranteed bit rates on uplink.
iGPRSReqGuaranteedDownlinkRate
CMDBField< TInt32 > iGPRSReqGuaranteedDownlinkRate;
Requested guaranteed bit rates on downlink.
iGPRSMinGuaranteedDownlinkRate
CMDBField< TInt32 > iGPRSMinGuaranteedDownlinkRate;
Minimum acceptable guaranteed bit rates on downlink.
iGPRSSignallingIndication
CMDBField< TBool > iGPRSSignallingIndication;
Signalling indication.
iGPRS_ImCnSignallingIndication
CMDBField< TBool > iGPRS_ImCnSignallingIndication;
IP Multimeida System (IMS) Core Network (CN) Signalling Indicator.
iGPRSSourceStatisticsDescriptor
CMDBField< RPacketQoS::TSourceStatisticsDescriptor > iGPRSSourceStatisticsDescriptor;
Static source descriptor.
iRecordInfo
const SRecordTypeInfo *const iRecordInfo;
class CCDModemBearerRecord : public CommsDat::CCDBearerRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDBearerRecordBase
- (No abstract)
CommsDat::CCDModemBearerRecord
- (No abstract)
Defined in CommsDat::CCDModemBearerRecord
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iAutoAnswerRingCount
, iBcaStack
, iBearerTechnology
, iBusy
, iCallProgress1
, iCallProgress2
, iCallProgress3
, iCallProgress4
, iCarrier
, iCarrierTimeOut
, iCommRole
, iCompressionClass5
, iCompressionNone
, iCompressionV42bis
, iConnect
, iControlChannelPortName
, iCsyName
, iDataBits
, iDataInitString
, iDcdOnDuringLink
, iDialCommandStateModifier
, iDialPauseLength
, iDialToneWaitModifier
, iDsrAlwaysOn
, iDtrHangUp
, iEchoOff
, iEscapeCharacter
, iEscapeGuardPeriod
, iFaxClass
, iFaxClassInterrogate
, iFaxClassPref
, iFaxInitString
, iHandshaking
, iIspInitString
, iLastSessionClosedTimeout
, iLastSocketActivityTimeout
, iLastSocketClosedTimeout
, iMessageCentreNumber
, iMessageDeliveryReport
, iMessageValidityPeriod
, iMinSignalLevel
, iModemInitString
, iNifName
, iNoAnswer
, iNoDialTone
, iOnLine
, iParity
, iPortName
, iProtocolAlt
, iProtocolAltcellular
, iProtocolLapd
, iProtocolNone
, iQuietOff
, iQuietOn
, iRate
, iResetConfiguration
, iReturnToFactoryDefs
, iRtsCtsHandshake
, iSirSettings
, iSpeakerAlwaysOff
, iSpeakerAlwaysOn
, iSpeakerOnAfterUntilCarrier
, iSpeakerOnUntilCarrier
, iSpeakerPref
, iSpeakerVolControlHigh
, iSpeakerVolControlLow
, iSpeakerVolControlMedium
, iSpeakerVolPref
, iSpecialRate
, iStopBits
, iTsyName
, iVDataTable
, iVerboseText
, iXoffChar
, iXonChar
, iXonXoffHandshake
Inherited from CommsDat::CCDBearerRecordBase
:
iBearerAgent
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iNifName
CMDBField< TDesC > iNifName;
iPortName
CMDBField< TDesC > iPortName;
iTsyName
CMDBField< TDesC > iTsyName;
iCsyName
CMDBField< TDesC > iCsyName;
iLastSocketActivityTimeout
CMDBField< TUint32 > iLastSocketActivityTimeout;
iLastSessionClosedTimeout
CMDBField< TUint32 > iLastSessionClosedTimeout;
iLastSocketClosedTimeout
CMDBField< TUint32 > iLastSocketClosedTimeout;
iDataBits
CMDBField< TUint32 > iDataBits;
iStopBits
CMDBField< TUint32 > iStopBits;
iParity
CMDBField< TUint32 > iParity;
iRate
CMDBField< TUint32 > iRate;
iHandshaking
CMDBField< TUint32 > iHandshaking;
iSpecialRate
CMDBField< TUint32 > iSpecialRate;
iXonChar
CMDBField< TUint32 > iXonChar;
iXoffChar
CMDBField< TUint32 > iXoffChar;
iFaxClassPref
CMDBField< TUint32 > iFaxClassPref;
iSpeakerPref
CMDBField< TUint32 > iSpeakerPref;
iSpeakerVolPref
CMDBField< TUint32 > iSpeakerVolPref;
iModemInitString
CMDBField< TDesC8 > iModemInitString;
iDataInitString
CMDBField< TDesC8 > iDataInitString;
iFaxInitString
CMDBField< TDesC8 > iFaxInitString;
iIspInitString
CMDBField< TDesC8 > iIspInitString;
iDialPauseLength
CMDBField< TDesC > iDialPauseLength;
iCarrierTimeOut
CMDBField< TDesC > iCarrierTimeOut;
iAutoAnswerRingCount
CMDBField< TDesC > iAutoAnswerRingCount;
iSpeakerVolControlLow
CMDBField< TDesC > iSpeakerVolControlLow;
iSpeakerVolControlMedium
CMDBField< TDesC > iSpeakerVolControlMedium;
iSpeakerVolControlHigh
CMDBField< TDesC > iSpeakerVolControlHigh;
iSpeakerAlwaysOff
CMDBField< TDesC > iSpeakerAlwaysOff;
iSpeakerOnUntilCarrier
CMDBField< TDesC > iSpeakerOnUntilCarrier;
iSpeakerAlwaysOn
CMDBField< TDesC > iSpeakerAlwaysOn;
iSpeakerOnAfterUntilCarrier
CMDBField< TDesC > iSpeakerOnAfterUntilCarrier;
iDialToneWaitModifier
CMDBField< TDesC > iDialToneWaitModifier;
iCallProgress1
CMDBField< TDesC > iCallProgress1;
iCallProgress2
CMDBField< TDesC > iCallProgress2;
iCallProgress3
CMDBField< TDesC > iCallProgress3;
iCallProgress4
CMDBField< TDesC > iCallProgress4;
iEchoOff
CMDBField< TDesC > iEchoOff;
iVerboseText
CMDBField< TDesC > iVerboseText;
iQuietOff
CMDBField< TDesC > iQuietOff;
iQuietOn
CMDBField< TDesC > iQuietOn;
iDialCommandStateModifier
CMDBField< TDesC > iDialCommandStateModifier;
iOnLine
CMDBField< TDesC > iOnLine;
iResetConfiguration
CMDBField< TDesC > iResetConfiguration;
iReturnToFactoryDefs
CMDBField< TDesC > iReturnToFactoryDefs;
iDcdOnDuringLink
CMDBField< TDesC > iDcdOnDuringLink;
iDtrHangUp
CMDBField< TDesC > iDtrHangUp;
iDsrAlwaysOn
CMDBField< TDesC > iDsrAlwaysOn;
iRtsCtsHandshake
CMDBField< TDesC > iRtsCtsHandshake;
iXonXoffHandshake
CMDBField< TDesC > iXonXoffHandshake;
iEscapeCharacter
CMDBField< TDesC > iEscapeCharacter;
iEscapeGuardPeriod
CMDBField< TDesC > iEscapeGuardPeriod;
iFaxClassInterrogate
CMDBField< TDesC > iFaxClassInterrogate;
iFaxClass
CMDBField< TDesC > iFaxClass;
iNoDialTone
CMDBField< TDesC > iNoDialTone;
iBusy
CMDBField< TDesC > iBusy;
iNoAnswer
CMDBField< TDesC > iNoAnswer;
iCarrier
CMDBField< TDesC > iCarrier;
iConnect
CMDBField< TDesC > iConnect;
iCompressionClass5
CMDBField< TDesC > iCompressionClass5;
iCompressionV42bis
CMDBField< TDesC > iCompressionV42bis;
iCompressionNone
CMDBField< TDesC > iCompressionNone;
iProtocolLapd
CMDBField< TDesC > iProtocolLapd;
iProtocolAlt
CMDBField< TDesC > iProtocolAlt;
iProtocolAltcellular
CMDBField< TDesC > iProtocolAltcellular;
iProtocolNone
CMDBField< TDesC > iProtocolNone;
iMessageCentreNumber
CMDBField< TDesC > iMessageCentreNumber;
iMessageValidityPeriod
CMDBField< TUint32 > iMessageValidityPeriod;
iMessageDeliveryReport
CMDBField< TBool > iMessageDeliveryReport;
iMinSignalLevel
CMDBField< TUint32 > iMinSignalLevel;
iCommRole
CMDBField< TUint32 > iCommRole;
iControlChannelPortName
CMDBField< TDesC > iControlChannelPortName;
iSirSettings
CMDBField< TUint32 > iSirSettings;
iBcaStack
CMDBField< TDesC > iBcaStack;
iBearerTechnology
CMDBField< TCommsDBBearerTechnology > iBearerTechnology;
class CMDBRecordLink : public CommsDat::CMDBRecordLinkBase;
This container expresses a 'soft-link' to a nested record.
The value of this field as stored in the database is the ElementId of the linked record.
The linked record is referenced by iLinkedElement
Calling MMetaDatabase
functions on this element directly will pass the call on to the linked data
However, if this element is a field in a MetaDatabase record the value is taken to be the elementId
When instantiating the pointer directly take care to match the object's type to the Type ID that will be found at the linking element.
CommsDat::CMDBRecordLinkBase
- No description.
CommsDat::CMDBRecordLink
- (No abstract)
Defined in CommsDat::CMDBRecordLink
:
CMDBRecordLink()
, CMDBRecordLink()
, SetL()
, operator RECORD_TYPE *()
, operator=()
CMDBRecordLink()
inline CMDBRecordLink(TMDBElementId aLinkingFieldId);
|
CMDBRecordLink()
inline CMDBRecordLink(TMDBElementId aLinkingFieldId, RECORD_TYPE *aLinkedRecord);
|
operator=()
inline CMDBRecordLink &operator=(const TMDBElementId aValue);
Assignment operator for field value which sets the id of the element list
|
|
SetL()
inline void SetL(const TMDBElementId aValue);
|
operator RECORD_TYPE *()
inline operator RECORD_TYPE *();
|
class CCDLANBearerRecord : public CommsDat::CCDBearerRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDBearerRecordBase
- (No abstract)
CommsDat::CCDLANBearerRecord
- (No abstract)
Defined in CommsDat::CCDLANBearerRecord
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iBearerTechnology
, iLanBearerLddFilename
, iLanBearerLddName
, iLanBearerNifName
, iLanBearerPacketDriverName
, iLanBearerPddFilename
, iLanBearerPddName
, iLastSessionClosedTimeout
, iLastSocketActivityTimeout
, iLastSocketClosedTimeout
, iVDataTable
Inherited from CommsDat::CCDBearerRecordBase
:
iBearerAgent
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iLanBearerNifName
CMDBField< TDesC > iLanBearerNifName;
iLanBearerLddFilename
CMDBField< TDesC > iLanBearerLddFilename;
iLanBearerLddName
CMDBField< TDesC > iLanBearerLddName;
iLanBearerPddFilename
CMDBField< TDesC > iLanBearerPddFilename;
iLanBearerPddName
CMDBField< TDesC > iLanBearerPddName;
iLanBearerPacketDriverName
CMDBField< TDesC > iLanBearerPacketDriverName;
iLastSocketActivityTimeout
CMDBField< TUint32 > iLastSocketActivityTimeout;
iLastSessionClosedTimeout
CMDBField< TUint32 > iLastSessionClosedTimeout;
iLastSocketClosedTimeout
CMDBField< TUint32 > iLastSocketClosedTimeout;
iBearerTechnology
CMDBField< TCommsDBBearerTechnology > iBearerTechnology;
class CCDVirtualBearerRecord : public CommsDat::CCDBearerRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDBearerRecordBase
- (No abstract)
CommsDat::CCDVirtualBearerRecord
- (No abstract)
Defined in CommsDat::CCDVirtualBearerRecord
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iBearerTechnology
, iLastSessionClosedTimeout
, iLastSocketActivityTimeout
, iLastSocketClosedTimeout
, iVDataTable
, iVirtualBearerNifName
Inherited from CommsDat::CCDBearerRecordBase
:
iBearerAgent
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iVirtualBearerNifName
CMDBField< TDesC > iVirtualBearerNifName;
iLastSocketActivityTimeout
CMDBField< TUint32 > iLastSocketActivityTimeout;
iLastSessionClosedTimeout
CMDBField< TUint32 > iLastSessionClosedTimeout;
iLastSocketClosedTimeout
CMDBField< TUint32 > iLastSocketClosedTimeout;
iBearerTechnology
CMDBField< TCommsDBBearerTechnology > iBearerTechnology;
class CCDWAPSMSBearerRecord : public CommsDat::CCDRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDWAPSMSBearerRecord
- (No abstract)
Defined in CommsDat::CCDWAPSMSBearerRecord
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iVDataTable
, iWAPAccessPointId
, iWAPGatewayAddress
, iWAPSecurity
, iWAPServiceCentreAddress
, iWAPWSPOption
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iWAPAccessPointId
CMDBRecordLink< CCDWAPAccessPointRecord > iWAPAccessPointId;
iWAPGatewayAddress
CMDBField< TDesC > iWAPGatewayAddress;
iWAPServiceCentreAddress
CMDBField< TDesC > iWAPServiceCentreAddress;
iWAPWSPOption
CMDBField< TUint8 > iWAPWSPOption;
iWAPSecurity
CMDBField< TBool > iWAPSecurity;
class CMDBRecordBase : public CommsDat::CMDBNumFieldBase;
Base class for all MetaDatabase records
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
Defined in CommsDat::CMDBRecordBase
:
CMDBRecordBase()
, CMDBRecordBase()
, GetFieldByIdL()
, GetFieldByNameL()
, GetRecordInfo()
CMDBRecordBase()
inline CMDBRecordBase();
CMDBRecordBase()
inline CMDBRecordBase(TMDBElementId aElementId);
|
GetFieldByNameL()
virtual IMPORT_C CMDBElement *GetFieldByNameL(const TPtrC &aFieldName, TInt &aValType);
|
|
GetFieldByIdL()
virtual IMPORT_C CMDBElement *GetFieldByIdL(TMDBElementId aId);
|
|
GetRecordInfo()
virtual IMPORT_C const SRecordTypeInfo *GetRecordInfo();
|
class CCDWAPIPBearerRecord : public CommsDat::CCDRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDWAPIPBearerRecord
- (No abstract)
Defined in CommsDat::CCDWAPIPBearerRecord
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iVDataTable
, iWAPAccessPointId
, iWAPGatewayAddress
, iWAPIAP
, iWAPProxyLoginName
, iWAPProxyLoginPass
, iWAPProxyPort
, iWAPSecurity
, iWAPWSPOption
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iWAPAccessPointId
CMDBRecordLink< CCDWAPAccessPointRecord > iWAPAccessPointId;
iWAPGatewayAddress
CMDBField< TDesC > iWAPGatewayAddress;
iWAPIAP
CMDBRecordLink< CCDIAPRecord > iWAPIAP;
iWAPWSPOption
CMDBField< TUint8 > iWAPWSPOption;
iWAPSecurity
CMDBField< TBool > iWAPSecurity;
iWAPProxyPort
CMDBField< TUint32 > iWAPProxyPort;
iWAPProxyLoginName
CMDBField< TDesC > iWAPProxyLoginName;
iWAPProxyLoginPass
CMDBField< TDesC > iWAPProxyLoginPass;
class CMDBGenericRecord : public CommsDat::CMDBRecordBase;
Container for data and type information in a MetaDatabase record For use to contain user-defined records as an alternative
to declaring a specific record class of type CCDRecordBase
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CMDBGenericRecord
- Container for data and type information in a MetaDatabase record For use to contain user-defined records as an alternative
to declaring a specific record class of type
Defined in CommsDat::CMDBGenericRecord
:
CMDBGenericRecord()
, GetAttribPtr()
, GetFieldByIdL()
, GetFieldByNameL()
, GetVDataTable()
, GetVDataTableStatic()
, InitializeL()
, iVDataTable
, ~CMDBGenericRecord()
Inherited from CommsDat::CMDBRecordBase
:
GetRecordInfo()
CMDBGenericRecord()
inline CMDBGenericRecord(TMDBElementId aElementId);
|
~CMDBGenericRecord()
IMPORT_C ~CMDBGenericRecord();
GetVDataTable()
virtual IMPORT_C Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual IMPORT_C TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
GetVDataTableStatic()
static IMPORT_C Meta::SVDataTableEntry const *GetVDataTableStatic();
|
GetFieldByNameL()
virtual IMPORT_C CMDBElement *GetFieldByNameL(const TPtrC &aFieldName, TInt &aValType);
|
|
GetFieldByIdL()
virtual IMPORT_C CMDBElement *GetFieldByIdL(TMDBElementId aId);
|
|
InitializeL()
IMPORT_C void InitializeL(const TDesC &aTableName, const SGenericRecordTypeInfo *aNewTableInfo);
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
class CCDChargecardRecord : public CommsDat::CCDRecordBase;
Reading of ChargeCard Table data is protected with ECDPrivate Attribute. This will require additional capabilities to read.
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDChargecardRecord
- Reading of ChargeCard Table data is protected with ECDPrivate Attribute
Defined in CommsDat::CCDChargecardRecord
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iAccountNo
, iIntlRule
, iLocalRule
, iNatRule
, iPin
, iVDataTable
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iAccountNo
CMDBField< TDesC > iAccountNo;
iPin
CMDBField< TDesC > iPin;
iLocalRule
CMDBField< TDesC > iLocalRule;
iNatRule
CMDBField< TDesC > iNatRule;
iIntlRule
CMDBField< TDesC > iIntlRule;
class CMDBRecordSetBase : public CommsDat::CMDBTextFieldBase;
Use this class to express a list of records MetaDatabase Element type Records can be ordered using the standard RPointerArray
functions
CommsDat::CMDBTextFieldBase
- No description.
CommsDat::CMDBRecordSetBase
- Use this class to express a list of records MetaDatabase Element type Records can be ordered using the standard
Defined in CommsDat::CMDBRecordSetBase
:
GetAttribPtr()
, GetVDataTable()
, GetVDataTableStatic()
, iRecords
, iVDataTable
, operator=()
operator=()
inline CMDBRecordSetBase &operator=(const TPtrC &aValue);
|
|
GetVDataTable()
protected: virtual IMPORT_C Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
protected: virtual IMPORT_C TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
GetVDataTableStatic()
protected: static IMPORT_C Meta::SVDataTableEntry const *GetVDataTableStatic();
|
iVDataTable
protected: const Meta::SVDataTableEntry iVDataTable;
iRecords
RPointerArray< CMDBRecordBase > iRecords;
class CCDProxiesRecord : public CommsDat::CCDRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDProxiesRecord
- (No abstract)
Defined in CommsDat::CCDProxiesRecord
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iExceptions
, iPortNumber
, iProtocolName
, iServerName
, iService
, iServiceType
, iUseProxyServer
, iVDataTable
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iService
CMDBRecordLink< CCDServiceRecordBase > iService;
iServiceType
CMDBField< TDesC > iServiceType;
iUseProxyServer
CMDBField< TBool > iUseProxyServer;
iServerName
CMDBField< TDesC > iServerName;
iProtocolName
CMDBField< TDesC > iProtocolName;
iPortNumber
CMDBField< TUint32 > iPortNumber;
iExceptions
CMDBField< TDesC > iExceptions;
class CCDPANServiceExtRecord : public CommsDat::CCDServiceRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDServiceRecordBase
- (No abstract)
CommsDat::CCDPANServiceExtRecord
- (No abstract)
Defined in CommsDat::CCDPANServiceExtRecord
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iAllowIncoming
, iDisableSdpQuery
, iLocalRole
, iPeerMACAddresses
, iPeerRole
, iPromptForRemoteDevices
, iPromptIfMACListFails
, iVDataTable
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CCDServiceRecordBase
:
iServiceEnableLlmnr
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iLocalRole
CMDBField< TUint32 > iLocalRole;
iPeerRole
CMDBField< TUint32 > iPeerRole;
iPeerMACAddresses
CMDBField< TDesC > iPeerMACAddresses;
iPromptForRemoteDevices
CMDBField< TBool > iPromptForRemoteDevices;
iDisableSdpQuery
CMDBField< TBool > iDisableSdpQuery;
iAllowIncoming
CMDBField< TBool > iAllowIncoming;
iPromptIfMACListFails
CMDBField< TBool > iPromptIfMACListFails;
class CCDAccessPointRecord : public CommsDat::CCDRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDAccessPointRecord
- (No abstract)
Defined in CommsDat::CCDAccessPointRecord
:
GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, iAccessPointGID
, iSelectionPolicy
, iVDataTable
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iAccessPointGID
CMDBField< TUint32 > iAccessPointGID;
iSelectionPolicy
CMDBRecordLink< CCDSelectionPolicyRecordBase > iSelectionPolicy;
class CCDSelectionPolicyRecordBase : public CommsDat::CCDRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDSelectionPolicyRecordBase
- (No abstract)
Defined in CommsDat::CCDSelectionPolicyRecordBase
:
GetAttribPtr()
, GetVDataTable()
, iVDataTable
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
,
GetRecordInfo()
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
class CCDIAPPrioritySelectionPolicyRecord : public CommsDat::CCDSelectionPolicyRecordBase;
CommsDat::CMDBNumFieldBase
- No description.
CommsDat::CMDBRecordBase
- Base class for all MetaDatabase records
CommsDat::CCDRecordBase
- Base class for wrapper containers for supported
CommsDat::CCDSelectionPolicyRecordBase
- (No abstract)
CommsDat::CCDIAPPrioritySelectionPolicyRecord
- (No abstract)
Defined in CommsDat::CCDIAPPrioritySelectionPolicyRecord
:
EMaxNrOfIaps
, GetAttribPtr()
, GetRecordInfo()
, GetVDataTable()
, anonymous
, iIap1
, iIap10
, iIap11
, iIap12
, iIap13
, iIap14
, iIap15
, iIap2
, iIap3
, iIap4
, iIap5
, iIap6
, iIap7
, iIap8
, iIap9
, iIapCount
, iVDataTable
Inherited from CommsDat::CCDRecordBase
:
CreateCopyRecordL()
,
GetVDataTableStatic()
,
RecordFactoryL()
,
iRecordName
,
iRecordTag
Inherited from CommsDat::CMDBRecordBase
:
GetFieldByIdL()
,
GetFieldByNameL()
GetVDataTable()
virtual Meta::SVDataTableEntry const *GetVDataTable() const;
|
GetAttribPtr()
virtual TUint8 *GetAttribPtr(const TInt aOffset) const;
|
|
GetRecordInfo()
virtual inline const SRecordTypeInfo *GetRecordInfo();
|
anonymous
n/a
|
iVDataTable
const Meta::SVDataTableEntry iVDataTable;
iIap1
CMDBRecordLink< CCDIAPRecord > iIap1;
iIap2
CMDBRecordLink< CCDIAPRecord > iIap2;
iIap3
CMDBRecordLink< CCDIAPRecord > iIap3;
iIap4
CMDBRecordLink< CCDIAPRecord > iIap4;
iIap5
CMDBRecordLink< CCDIAPRecord > iIap5;
iIap6
CMDBRecordLink< CCDIAPRecord > iIap6;
iIap7
CMDBRecordLink< CCDIAPRecord > iIap7;
iIap8
CMDBRecordLink< CCDIAPRecord > iIap8;
iIap9
CMDBRecordLink< CCDIAPRecord > iIap9;
iIap10
CMDBRecordLink< CCDIAPRecord > iIap10;
iIap11
CMDBRecordLink< CCDIAPRecord > iIap11;
iIap12
CMDBRecordLink< CCDIAPRecord > iIap12;
iIap13
CMDBRecordLink< CCDIAPRecord > iIap13;
iIap14
CMDBRecordLink< CCDIAPRecord > iIap14;
iIap15
CMDBRecordLink< CCDIAPRecord > iIap15;
iIapCount
CMDBField< TUint32 > iIapCount;
struct SGenericRecordTypeInfoTag;
To express type information for all MetaDatabase fields
Defined in CommsDat::SGenericRecordTypeInfoTag
:
SGenericRecordTypeInfoTag()
, SGenericRecordTypeInfoTag()
, SGenericRecordTypeInfoTag()
, SGenericRecordTypeInfoTag()
, iTypeAttr
, iTypeId
, iTypeName
, iValType
SGenericRecordTypeInfoTag()
inline SGenericRecordTypeInfoTag();
SGenericRecordTypeInfoTag()
inline SGenericRecordTypeInfoTag(TMDBElementId aId, TInt aVal, TFieldTypeAttributes aAttrType);
|
SGenericRecordTypeInfoTag()
inline SGenericRecordTypeInfoTag(TMDBElementId aId, TInt aVal, TFieldTypeAttributes aAttrType, TText *const aTypeName);
|
SGenericRecordTypeInfoTag()
inline SGenericRecordTypeInfoTag(TMDBElementId aId, TInt aVal, TFieldTypeAttributes aAttrType, const TGenericTypeName &aTypeName);
|
iTypeId
TMDBElementId iTypeId;
iValType
TInt iValType;
iTypeAttr
TFieldTypeAttributes iTypeAttr;
iTypeName
TGenericTypeName iTypeName;
TFieldTypeAttributes
To express type information for all MetaDatabase fields
|
typedef TUint32 CommsDat::TMDBElementId;
The identifier of an entry in the MetaDatabase
This identifies the data location and the data meaning in the database schema It also identifies the type of the data stored in this element
typedef struct CommsDat::SGenericRecordTypeInfoTag CommsDat::SGenericRecordTypeInfo;
To express type information for all MetaDatabase fields