/external/parameter-framework/upstream/parameter/ |
D | Element.cpp | 45 CElement::CElement(const string &strName) : _strName(strName) in CElement() argument 226 string strName = getName(); in setXmlNameAttribute() local 228 if (!strName.empty()) { in setXmlNameAttribute() 230 xmlElement.setNameAttribute(strName); in setXmlNameAttribute() 235 void CElement::setName(const string &strName) in setName() argument 237 _strName = strName; in setName() 245 bool CElement::rename(const string &strName, string &strError) in rename() argument 252 if (pParentChild != this && pParentChild->getName() == strName) { in rename() 262 setName(strName); in rename() 464 CElement *CElement::findChild(const string &strName) in findChild() argument [all …]
|
D | SelectionCriteriaDefinition.cpp | 40 const std::string &strName, const CSelectionCriterionType *pType, core::log::Logger &logger) in createSelectionCriterion() argument 42 auto pSelectionCriterion = new CSelectionCriterion(strName, pType, logger); in createSelectionCriterion() 51 const std::string &strName) const in getSelectionCriterion() 53 return static_cast<const CSelectionCriterion *>(findChild(strName)); in getSelectionCriterion() 56 CSelectionCriterion *CSelectionCriteriaDefinition::getSelectionCriterion(const std::string &strName) in getSelectionCriterion() argument 58 return static_cast<CSelectionCriterion *>(findChild(strName)); in getSelectionCriterion()
|
D | ParameterMgrFullConnector.cpp | 133 bool CParameterMgrFullConnector::createDomain(const string &strName, string &strError) in createDomain() argument 135 return _pParameterMgr->createDomain(strName, strError); in createDomain() 138 bool CParameterMgrFullConnector::deleteDomain(const string &strName, string &strError) in deleteDomain() argument 140 return _pParameterMgr->deleteDomain(strName, strError); in deleteDomain() 143 bool CParameterMgrFullConnector::renameDomain(const string &strName, const string &strNewName, in renameDomain() argument 146 return _pParameterMgr->renameDomain(strName, strNewName, strError); in renameDomain() 190 bool CParameterMgrFullConnector::setSequenceAwareness(const string &strName, bool bSequenceAware, in setSequenceAwareness() argument 193 return _pParameterMgr->setSequenceAwareness(strName, bSequenceAware, strResult); in setSequenceAwareness() 196 bool CParameterMgrFullConnector::getSequenceAwareness(const string &strName, bool &bSequenceAware, in getSequenceAwareness() argument 199 return _pParameterMgr->getSequenceAwareness(strName, bSequenceAware, strResult); in getSequenceAwareness()
|
D | SelectionCriteria.cpp | 54 const std::string &strName, const CSelectionCriterionType *pType, core::log::Logger &logger) in createSelectionCriterion() argument 56 return getSelectionCriteriaDefinition()->createSelectionCriterion(strName, pType, logger); in createSelectionCriterion() 60 CSelectionCriterion *CSelectionCriteria::getSelectionCriterion(const std::string &strName) in getSelectionCriterion() argument 62 return getSelectionCriteriaDefinition()->getSelectionCriterion(strName); in getSelectionCriterion()
|
D | Element.h | 51 CElement(const std::string &strName = ""); 60 void setName(const std::string &strName); 61 bool rename(const std::string &strName, std::string &strError); 102 const CElement *findChild(const std::string &strName) const; 103 CElement *findChild(const std::string &strName);
|
D | VirtualSubsystem.cpp | 38 CVirtualSubsystem::CVirtualSubsystem(const string &strName, core::log::Logger &logger) in CVirtualSubsystem() argument 39 : base(strName, logger), _pVirtualSyncer(new CVirtualSyncer(this)) in CVirtualSubsystem() 41 logger.warning() << "Subsystem " << strName in CVirtualSubsystem()
|
D | SelectionCriteriaDefinition.h | 42 CSelectionCriterion *createSelectionCriterion(const std::string &strName, 47 const CSelectionCriterion *getSelectionCriterion(const std::string &strName) const; 48 CSelectionCriterion *getSelectionCriterion(const std::string &strName);
|
D | ParameterMgrPlatformConnector.cpp | 62 const string &strName, const ISelectionCriterionTypeInterface *pSelectionCriterionType) in createSelectionCriterion() argument 67 strName, static_cast<const CSelectionCriterionType *>(pSelectionCriterionType)); in createSelectionCriterion() 72 const string &strName) const in getSelectionCriterion() 74 return _pParameterMgr->getSelectionCriterion(strName); in getSelectionCriterion()
|
D | ConfigurableDomain.h | 55 CConfigurableDomain(const std::string &strName); 63 bool createConfiguration(const std::string &strName, 65 bool deleteConfiguration(const std::string &strName, std::string &strError); 66 bool renameConfiguration(const std::string &strName, const std::string &strNewName, 81 bool saveConfiguration(const std::string &strName, const CParameterBlackboard *pMainBlackboard,
|
D | ConfigurableDomain.cpp | 45 CConfigurableDomain::CConfigurableDomain(const string &strName) : base(strName) in CConfigurableDomain() argument 617 bool CConfigurableDomain::createConfiguration(const string &strName, in createConfiguration() argument 622 if (findChild(strName)) { in createConfiguration() 630 auto pDomainConfiguration = new CDomainConfiguration(strName); in createConfiguration() 662 bool CConfigurableDomain::deleteConfiguration(const string &strName, string &strError) in deleteConfiguration() argument 664 CDomainConfiguration *pDomainConfiguration = findConfiguration(strName, strError); in deleteConfiguration() 700 bool CConfigurableDomain::renameConfiguration(const string &strName, const string &strNewName, in renameConfiguration() argument 703 CDomainConfiguration *pDomainConfiguration = findConfiguration(strName, strError); in renameConfiguration() 742 bool CConfigurableDomain::saveConfiguration(const string &strName, in saveConfiguration() argument 747 CDomainConfiguration *pDomainConfiguration = findConfiguration(strName, strError); in saveConfiguration()
|
D | ConfigurableDomains.cpp | 116 bool CConfigurableDomains::createDomain(const string &strName, string &strError) in createDomain() argument 119 if (findChild(strName)) { in createDomain() 127 addChild(new CConfigurableDomain(strName)); in createDomain() 161 bool CConfigurableDomains::deleteDomain(const string &strName, string &strError) in deleteDomain() argument 163 CConfigurableDomain *pConfigurableDomain = findConfigurableDomain(strName, strError); in deleteDomain() 179 bool CConfigurableDomains::renameDomain(const string &strName, const string &strNewName, in renameDomain() argument 182 CConfigurableDomain *pConfigurableDomain = findConfigurableDomain(strName, strError); in renameDomain()
|
D | ParameterBlock.h | 39 CParameterBlock(const std::string &strName, const CTypeElement *pTypeElement) in CParameterBlock() argument 40 : CInstanceConfigurableElement(strName, pTypeElement) in CParameterBlock()
|
D | SubsystemPlugins.h | 39 CSubsystemPlugins(const std::string &strName, const std::string &strKind) in CSubsystemPlugins() argument 40 : CKindElement(strName, strKind) in CSubsystemPlugins()
|
D | FrameworkConfigurationGroup.h | 39 CFrameworkConfigurationGroup(const std::string &strName, const std::string &strKind) in CFrameworkConfigurationGroup() argument 40 : CKindElement(strName, strKind) in CFrameworkConfigurationGroup()
|
D | Component.h | 39 CComponent(const std::string &strName, const CTypeElement *pTypeElement) in CComponent() argument 40 : CInstanceConfigurableElement(strName, pTypeElement) in CComponent()
|
D | KindElement.h | 39 CKindElement(const std::string &strName, const std::string &strKind) in CKindElement() argument 40 : CElement(strName), _strKind(strKind) in CKindElement()
|
D | FrameworkConfigurationLocation.cpp | 36 CFrameworkConfigurationLocation::CFrameworkConfigurationLocation(const std::string &strName, in CFrameworkConfigurationLocation() argument 38 : base(strName, strKind) in CFrameworkConfigurationLocation()
|
D | BitParameterBlock.cpp | 39 CBitParameterBlock::CBitParameterBlock(const string &strName, const CTypeElement *pTypeElement) in CBitParameterBlock() argument 40 : base(strName, pTypeElement) in CBitParameterBlock()
|
D | PluginLocation.cpp | 34 CPluginLocation::CPluginLocation(const std::string &strName, const std::string &strKind) in CPluginLocation() argument 35 : base(strName, strKind) in CPluginLocation()
|
D | ComponentLibrary.cpp | 44 const CComponentType *CComponentLibrary::getComponentType(const std::string &strName) const in getComponentType() 46 return static_cast<const CComponentType *>(findChild(strName)); in getComponentType()
|
/external/parameter-framework/upstream/test/test-platform/ |
D | TestPlatform.cpp | 256 const string &strName, const IRemoteCommand &remoteCommand, string &strResult) in createExclusiveSelectionCriterionFromStateList() argument 278 mParameterMgrPlatformConnector.createSelectionCriterion(strName, pCriterionType); in createExclusiveSelectionCriterionFromStateList() 284 const string &strName, const IRemoteCommand &remoteCommand, string &strResult) in createInclusiveSelectionCriterionFromStateList() argument 305 mParameterMgrPlatformConnector.createSelectionCriterion(strName, pCriterionType); in createInclusiveSelectionCriterionFromStateList() 310 bool CTestPlatform::createExclusiveSelectionCriterion(const string &strName, size_t nbStates, in createExclusiveSelectionCriterion() argument 332 mParameterMgrPlatformConnector.createSelectionCriterion(strName, pCriterionType); in createExclusiveSelectionCriterion() 337 bool CTestPlatform::createInclusiveSelectionCriterion(const string &strName, size_t nbStates, in createInclusiveSelectionCriterion() argument 358 mParameterMgrPlatformConnector.createSelectionCriterion(strName, pCriterionType); in createInclusiveSelectionCriterion() 363 bool CTestPlatform::setCriterionState(const string &strName, uint32_t uiState, string &strResult) in setCriterionState() argument 366 mParameterMgrPlatformConnector.getSelectionCriterion(strName); in setCriterionState() [all …]
|
D | TestPlatform.h | 136 bool createExclusiveSelectionCriterionFromStateList(const std::string &strName, 139 bool createInclusiveSelectionCriterionFromStateList(const std::string &strName, 143 bool createExclusiveSelectionCriterion(const std::string &strName, size_t nbValues, 145 bool createInclusiveSelectionCriterion(const std::string &strName, size_t nbValues, 147 bool setCriterionState(const std::string &strName, uint32_t uiState, std::string &strResult);
|
/external/parameter-framework/upstream/bindings/python/ |
D | pfw.i | 84 ISelectionCriterionInterface* createSelectionCriterion(const std::string& strName, 86 ISelectionCriterionInterface* getSelectionCriterion(const std::string& strName); 132 bool createDomain(const std::string& strName, std::string& strError); 133 bool deleteDomain(const std::string& strName, std::string& strError); 134 …bool renameDomain(const std::string& strName, const std::string& strNewName, std::string& strError… 137 …bool setSequenceAwareness(const std::string& strName, bool bSequenceAware, std::string& strResult); 138 …bool getSequenceAwareness(const std::string& strName, bool& bSequenceAware, std::string& strResult…
|
/external/parameter-framework/upstream/parameter/include/ |
D | ParameterMgrFullConnector.h | 122 bool createDomain(const std::string &strName, std::string &strError); 123 bool deleteDomain(const std::string &strName, std::string &strError); 124 bool renameDomain(const std::string &strName, const std::string &strNewName, 127 bool setSequenceAwareness(const std::string &strName, bool bSequenceAware, 129 bool getSequenceAwareness(const std::string &strName, bool &bSequenceAware,
|
/external/parameter-framework/upstream/skeleton-subsystem/ |
D | SkeletonSubsystem.cpp | 36 CSkeletonSubsystem::CSkeletonSubsystem(const std::string &strName, core::log::Logger &logger) in CSkeletonSubsystem() argument 37 : CSubsystem(strName, logger) in CSkeletonSubsystem()
|