Searched defs:strConfigurableElementPath (Results 1 - 4 of 4) sorted by relevance

/external/parameter-framework/parameter/
H A DDomainConfiguration.cpp89 string strConfigurableElementPath = xmlConfigurableElementSettingsElement.getAttributeString("Path"); local
91 CAreaConfiguration* pAreaConfiguration = findAreaConfiguration(strConfigurableElementPath);
95 xmlDomainImportContext.setError("Configurable Element " + strConfigurableElementPath + " referred to by Configuration " + getPath() + " not associated to Domain");
245 string strConfigurableElementPath = astrNewElementSequence[uiConfigurableElement]; local
247 CAreaConfiguration* pAreaConfiguration = findAreaConfiguration(strConfigurableElementPath);
251 strError = "Element " + strConfigurableElementPath + " not found in domain";
256 if (findAreaConfiguration(strConfigurableElementPath, areaConfigurationList)) {
258 strError = "Element " + strConfigurableElementPath + " provided more than once";
516 CAreaConfiguration* CDomainConfiguration::findAreaConfiguration(const string& strConfigurableElementPath) const
518 return findAreaConfiguration(strConfigurableElementPath, _areaConfigurationLis
522 findAreaConfiguration(const string& strConfigurableElementPath, const std::list<CAreaConfiguration*>& areaConfigurationList) const argument
[all...]
H A DConfigurableDomain.cpp277 string strConfigurableElementPath = xmlConfigurableElementElement.getAttributeString("Path"); local
279 CPathNavigator pathNavigator(strConfigurableElementPath);
285 serializingContext.setError("Could not find configurable element of path " + strConfigurableElementPath + " from ConfigurableDomain description " + getName() + " (" + strError + ")");
295 serializingContext.setError("Could not find configurable element of path " + strConfigurableElementPath + " from ConfigurableDomain description " + getName());
H A DParameterMgrFullConnector.cpp288 const string& strConfigurableElementPath, string& strError)
290 return _pParameterMgr->addConfigurableElementToDomain(strDomain, strConfigurableElementPath,
295 const string& strConfigurableElementPath, string& strError)
298 strConfigurableElementPath, strError);
302 const string& strConfigurableElementPath, string& strError)
304 return _pParameterMgr->split(strDomain, strConfigurableElementPath, strError);
287 addConfigurableElementToDomain(const string& strDomain, const string& strConfigurableElementPath, string& strError) argument
294 removeConfigurableElementFromDomain(const string& strDomain, const string& strConfigurableElementPath, string& strError) argument
301 split(const string& strDomain, const string& strConfigurableElementPath, string& strError) argument
H A DParameterMgr.cpp2106 bool CParameterMgr::addConfigurableElementToDomain(const string& strDomain, const string& strConfigurableElementPath, string& strError) argument
2118 if (!elementLocator.locate(strConfigurableElementPath, &pLocatedElement, strError)) {
2130 bool CParameterMgr::removeConfigurableElementFromDomain(const string& strDomain, const string& strConfigurableElementPath, string& strError) argument
2142 if (!elementLocator.locate(strConfigurableElementPath, &pLocatedElement, strError)) {
2154 bool CParameterMgr::split(const string& strDomain, const string& strConfigurableElementPath, string& strError) argument
2166 if (!elementLocator.locate(strConfigurableElementPath, &pLocatedElement, strError)) {

Completed in 99 milliseconds