/external/parameter-framework/parameter/ |
D | SelectionCriteriaDefinition.cpp | 43 …SelectionCriteriaDefinition::createSelectionCriterion(const std::string& strName, const CSelection… in createSelectionCriterion() argument 45 …CSelectionCriterion* pSelectionCriterion = new CSelectionCriterion(strName, pSelectionCriterionTyp… in createSelectionCriterion() 53 …ionCriterion* CSelectionCriteriaDefinition::getSelectionCriterion(const std::string& strName) const in getSelectionCriterion() 55 return static_cast<const CSelectionCriterion*>(findChild(strName)); in getSelectionCriterion() 58 CSelectionCriterion* CSelectionCriteriaDefinition::getSelectionCriterion(const std::string& strName) in getSelectionCriterion() argument 60 return static_cast<CSelectionCriterion*>(findChild(strName)); in getSelectionCriterion()
|
D | ParameterMgrFullConnector.cpp | 85 const string& strName, in createSelectionCriterion() argument 88 return _pParameterMgr->createSelectionCriterion(strName, in createSelectionCriterion() 93 const string& strName) in getSelectionCriterion() argument 95 return _pParameterMgr->getSelectionCriterion(strName); in getSelectionCriterion() 218 bool CParameterMgrFullConnector::createDomain(const string& strName, string& strError) in createDomain() argument 220 return _pParameterMgr->createDomain(strName, strError); in createDomain() 223 bool CParameterMgrFullConnector::deleteDomain(const string& strName, string& strError) in deleteDomain() argument 225 return _pParameterMgr->deleteDomain(strName, strError); in deleteDomain() 228 bool CParameterMgrFullConnector::renameDomain(const string& strName, const string& strNewName, in renameDomain() argument 231 return _pParameterMgr->renameDomain(strName, strNewName, strError); in renameDomain() [all …]
|
D | Element.cpp | 43 CElement::CElement(const string& strName) : _strName(strName), _pParent(NULL) in CElement() argument 313 string strName = getName(); in setXmlNameAttribute() local 315 if (!strName.empty()) { in setXmlNameAttribute() 317 xmlElement.setNameAttribute(strName); in setXmlNameAttribute() 322 void CElement::setName(const string& strName) in setName() argument 324 _strName = strName; in setName() 332 bool CElement::rename(const string& strName, string& strError) in rename() argument 344 if (pParentChild != this && pParentChild->getName() == strName) { in rename() 354 setName(strName); in rename() 582 CElement* CElement::findChild(const string& strName) in findChild() argument [all …]
|
D | SelectionCriteria.cpp | 53 CSelectionCriterion* CSelectionCriteria::createSelectionCriterion(const std::string& strName, const… in createSelectionCriterion() argument 55 …return getSelectionCriteriaDefinition()->createSelectionCriterion(strName, pSelectionCriterionType… in createSelectionCriterion() 59 CSelectionCriterion* CSelectionCriteria::getSelectionCriterion(const std::string& strName) in getSelectionCriterion() argument 61 return getSelectionCriteriaDefinition()->getSelectionCriterion(strName); in getSelectionCriterion()
|
D | ConfigurableDomain.cpp | 48 CConfigurableDomain::CConfigurableDomain(const string& strName) : base(strName), _bSequenceAware(fa… in CConfigurableDomain() argument 591 bool CConfigurableDomain::createConfiguration(const string& strName, const CParameterBlackboard* pM… in createConfiguration() argument 594 if (findChild(strName)) { in createConfiguration() 600 …log_info("Creating domain configuration \"%s\" into domain \"%s\"", strName.c_str(), getName().c_s… in createConfiguration() 603 CDomainConfiguration* pDomainConfiguration = new CDomainConfiguration(strName); in createConfiguration() 633 bool CConfigurableDomain::deleteConfiguration(const string& strName, string& strError) in deleteConfiguration() argument 635 CDomainConfiguration* pDomainConfiguration = findConfiguration(strName, strError); in deleteConfiguration() 642 … log_info("Deleting configuration \"%s\" from domain \"%s\"", strName.c_str(), getName().c_str()); in deleteConfiguration() 675 bool CConfigurableDomain::renameConfiguration(const string& strName, const string& strNewName, stri… in renameConfiguration() argument 677 CDomainConfiguration* pDomainConfiguration = findConfiguration(strName, strError); in renameConfiguration() [all …]
|
D | ConfigurableDomain.h | 52 CConfigurableDomain(const std::string& strName); 60 …bool createConfiguration(const std::string& strName, const CParameterBlackboard* pMainBlackboard, … 61 bool deleteConfiguration(const std::string& strName, std::string& strError); 62 …bool renameConfiguration(const std::string& strName, const std::string& strNewName, std::string& s… 63 …bool restoreConfiguration(const std::string& strName, CParameterBlackboard* pMainBlackboard, bool … 64 …bool saveConfiguration(const std::string& strName, const CParameterBlackboard* pMainBlackboard, st…
|
D | SelectionCriteriaDefinition.h | 43 …CSelectionCriterion* createSelectionCriterion(const std::string& strName, const CSelectionCriterio… 46 const CSelectionCriterion* getSelectionCriterion(const std::string& strName) const; 47 CSelectionCriterion* getSelectionCriterion(const std::string& strName);
|
D | Element.h | 48 CElement(const std::string& strName = ""); 62 void setName(const std::string& strName); 63 bool rename(const std::string& strName, std::string& strError); 104 const CElement* findChild(const std::string& strName) const; 105 CElement* findChild(const std::string& strName);
|
D | ParameterMgrPlatformConnector.cpp | 61 …* CParameterMgrPlatformConnector::createSelectionCriterion(const string& strName, const ISelection… in createSelectionCriterion() argument 65 …return _pParameterMgr->createSelectionCriterion(strName, static_cast<const CSelectionCriterionType… in createSelectionCriterion() 69 …terionInterface* CParameterMgrPlatformConnector::getSelectionCriterion(const string& strName) const in getSelectionCriterion() 71 return _pParameterMgr->getSelectionCriterion(strName); in getSelectionCriterion()
|
D | ConfigurableDomains.cpp | 112 bool CConfigurableDomains::createDomain(const string& strName, string& strError) in createDomain() argument 115 if (findChild(strName)) { in createDomain() 122 log_info("Creating configurable domain \"%s\"", strName.c_str()); in createDomain() 125 addChild(new CConfigurableDomain(strName)); in createDomain() 164 bool CConfigurableDomains::deleteDomain(const string& strName, string& strError) in deleteDomain() argument 166 CConfigurableDomain* pConfigurableDomain = findConfigurableDomain(strName, strError); in deleteDomain() 184 bool CConfigurableDomains::renameDomain(const string& strName, const string& strNewName, string& st… in renameDomain() argument 186 CConfigurableDomain* pConfigurableDomain = findConfigurableDomain(strName, strError); in renameDomain() 193 log_info("Renaming configurable domain \"%s\" to \"%s\"", strName.c_str(), strNewName.c_str()); in renameDomain()
|
D | SubsystemPlugins.h | 39 …CSubsystemPlugins(const std::string& strName, const std::string& strKind) : CKindElement(strName, … in CSubsystemPlugins() argument
|
D | Component.h | 39 …CComponent(const std::string& strName, const CTypeElement* pTypeElement) : CInstanceConfigurableEl… in CComponent() argument
|
D | FrameworkConfigurationGroup.h | 39 …FrameworkConfigurationGroup(const std::string& strName, const std::string& strKind) : CKindElement… in CFrameworkConfigurationGroup() argument
|
D | ParameterBlock.h | 39 CParameterBlock(const std::string& strName, const CTypeElement* pTypeElement) in CParameterBlock() argument 40 : CInstanceConfigurableElement(strName, pTypeElement) in CParameterBlock()
|
D | ConfigurableElementWithMapping.h | 43 CConfigurableElementWithMapping(const std::string& strName) : CConfigurableElement(strName) {} in CConfigurableElementWithMapping() argument
|
D | KindElement.h | 39 …CKindElement(const std::string& strName, const std::string& strKind) : CElement(strName), _strKind… in CKindElement() argument
|
D | VirtualSubsystem.cpp | 37 CVirtualSubsystem::CVirtualSubsystem(const string& strName) in CVirtualSubsystem() argument 38 : base(strName), _pVirtualSyncer(new CVirtualSyncer(this)) in CVirtualSubsystem()
|
D | BitParameterBlock.cpp | 39 …arameterBlock::CBitParameterBlock(const string& strName, const CTypeElement* pTypeElement) : base(… in CBitParameterBlock() argument
|
D | ComponentLibrary.cpp | 48 const CComponentType* CComponentLibrary::getComponentType(const std::string& strName) const in getComponentType() 50 return static_cast<const CComponentType*>(findChild(strName)); in getComponentType()
|
D | PluginLocation.cpp | 34 …PluginLocation::CPluginLocation(const std::string& strName, const std::string& strKind) : base(str… in CPluginLocation() argument
|
/external/parameter-framework/test/test-platform/ |
D | TestPlatform.cpp | 291 const string& strName, in createExclusiveSelectionCriterionFromStateList() argument 318 _pParameterMgrPlatformConnector->createSelectionCriterion(strName, pCriterionType); in createExclusiveSelectionCriterionFromStateList() 324 const string& strName, in createInclusiveSelectionCriterionFromStateList() argument 358 _pParameterMgrPlatformConnector->createSelectionCriterion(strName, pCriterionType); in createInclusiveSelectionCriterionFromStateList() 364 bool CTestPlatform::createExclusiveSelectionCriterion(const string& strName, in createExclusiveSelectionCriterion() argument 388 _pParameterMgrPlatformConnector->createSelectionCriterion(strName, pCriterionType); in createExclusiveSelectionCriterion() 393 bool CTestPlatform::createInclusiveSelectionCriterion(const string& strName, in createInclusiveSelectionCriterion() argument 424 _pParameterMgrPlatformConnector->createSelectionCriterion(strName, pCriterionType); in createInclusiveSelectionCriterion() 429 bool CTestPlatform::setCriterionState(const string& strName, uint32_t uiState, string& strResult) in setCriterionState() argument 432 _pParameterMgrPlatformConnector->getSelectionCriterion(strName); in setCriterionState() [all …]
|
D | TestPlatform.h | 136 …bool createExclusiveSelectionCriterionFromStateList(const std::string& strName, const IRemoteComma… 137 …bool createInclusiveSelectionCriterionFromStateList(const std::string& strName, const IRemoteComma… 139 …bool createExclusiveSelectionCriterion(const std::string& strName, uint32_t uiNbValues, std::strin… 140 …bool createInclusiveSelectionCriterion(const std::string& strName, uint32_t uiNbValues, std::strin… 141 bool setCriterionState(const std::string& strName, uint32_t uiState, std::string& strResult);
|
/external/parameter-framework/parameter/include/ |
D | ParameterMgrFullConnector.h | 70 ISelectionCriterionInterface* createSelectionCriterion(const std::string& strName, 72 ISelectionCriterionInterface* getSelectionCriterion(const std::string& strName); 175 bool createDomain(const std::string& strName, std::string& strError); 176 bool deleteDomain(const std::string& strName, std::string& strError); 177 …bool renameDomain(const std::string& strName, const std::string& strNewName, std::string& strError… 179 …bool setSequenceAwareness(const std::string& strName, bool bSequenceAware, std::string& strResult); 180 …bool getSequenceAwareness(const std::string& strName, bool& bSequenceAware, std::string& strResult…
|
/external/parameter-framework/bindings/python/ |
D | pfw.i | 84 ISelectionCriterionInterface* createSelectionCriterion(const std::string& strName, 86 ISelectionCriterionInterface* getSelectionCriterion(const std::string& strName); 130 bool createDomain(const std::string& strName, std::string& strError); 131 bool deleteDomain(const std::string& strName, std::string& strError); 132 …bool renameDomain(const std::string& strName, const std::string& strNewName, std::string& strError… 135 …bool setSequenceAwareness(const std::string& strName, bool bSequenceAware, std::string& strResult); 136 …bool getSequenceAwareness(const std::string& strName, bool& bSequenceAware, std::string& strResult…
|
/external/parameter-framework/skeleton-subsystem/ |
D | SkeletonSubsystem.cpp | 38 CSkeletonSubsystem::CSkeletonSubsystem(const std::string& strName) : base(strName) in CSkeletonSubsystem() argument
|