Searched refs:strDomain (Results 1 - 7 of 7) sorted by relevance

/external/parameter-framework/upstream/parameter/
H A DConfigurableDomains.h77 bool setSequenceAwareness(const std::string &strDomain, bool bSequenceAware,
79 bool getSequenceAwareness(const std::string &strDomain, bool &bSequenceAware,
81 bool listDomainElements(const std::string &strDomain, std::string &strResult) const;
97 bool listConfigurations(const std::string &strDomain, std::string &strResult) const;
98 bool createConfiguration(const std::string &strDomain, const std::string &strConfiguration,
100 bool deleteConfiguration(const std::string &strDomain, const std::string &strConfiguration,
102 bool renameConfiguration(const std::string &strDomain, const std::string &strConfigurationName,
107 * @param[in] strDomain the domain name
114 bool restoreConfiguration(const std::string &strDomain, const std::string &strConfiguration,
118 bool saveConfiguration(const std::string &strDomain, cons
[all...]
H A DParameterMgrFullConnector.cpp119 bool CParameterMgrFullConnector::accessConfigurationValue(const string &strDomain, argument
124 return _pParameterMgr->accessConfigurationValue(strDomain, strConfiguration, strPath, strValue,
154 bool CParameterMgrFullConnector::createConfiguration(const string &strDomain, argument
158 return _pParameterMgr->createConfiguration(strDomain, strConfiguration, strError);
161 bool CParameterMgrFullConnector::deleteConfiguration(const string &strDomain, argument
165 return _pParameterMgr->deleteConfiguration(strDomain, strConfiguration, strError);
168 bool CParameterMgrFullConnector::renameConfiguration(const string &strDomain, argument
173 return _pParameterMgr->renameConfiguration(strDomain, strConfiguration, strNewConfiguration,
177 bool CParameterMgrFullConnector::saveConfiguration(const string &strDomain, argument
180 return _pParameterMgr->saveConfiguration(strDomain, strConfiguratio
183 restoreConfiguration(const string &strDomain, const string &strConfiguration, Results &errors) argument
202 addConfigurableElementToDomain( const string &strDomain, const string &strConfigurableElementPath, string &strError) argument
209 removeConfigurableElementFromDomain( const string &strDomain, const string &strConfigurableElementPath, string &strError) argument
216 split(const string &strDomain, const string &strConfigurableElementPath, string &strError) argument
222 setElementSequence( const string &strDomain, const string &strConfiguration, const std::vector<string> &astrNewElementSequence, string &strError) argument
230 setApplicationRule(const string &strDomain, const string &strConfiguration, const string &strApplicationRule, string &strError) argument
239 getApplicationRule(const string &strDomain, const string &strConfiguration, string &strResult) argument
245 clearApplicationRule(const string &strDomain, const string &strConfiguration, string &strError) argument
[all...]
H A DConfigurableDomains.cpp193 bool CConfigurableDomains::setSequenceAwareness(const string &strDomain, bool bSequenceAware, argument
196 CConfigurableDomain *pConfigurableDomain = findConfigurableDomain(strDomain, strError);
208 bool CConfigurableDomains::getSequenceAwareness(const string &strDomain, bool &bSequenceAware, argument
211 const CConfigurableDomain *pConfigurableDomain = findConfigurableDomain(strDomain, strError);
224 bool CConfigurableDomains::listConfigurations(const string &strDomain, string &strResult) const argument
226 const CConfigurableDomain *pConfigurableDomain = findConfigurableDomain(strDomain, strResult);
238 bool CConfigurableDomains::createConfiguration(const string &strDomain, argument
244 CConfigurableDomain *pConfigurableDomain = findConfigurableDomain(strDomain, strError);
254 bool CConfigurableDomains::deleteConfiguration(const string &strDomain, argument
258 CConfigurableDomain *pConfigurableDomain = findConfigurableDomain(strDomain, strErro
268 renameConfiguration(const string &strDomain, const string &strConfigurationName, const string &strNewConfigurationName, string &strError) argument
285 listDomainElements(const string &strDomain, string &strResult) const argument
424 saveConfiguration(const string &strDomain, const string &strConfiguration, const CParameterBlackboard *pMainBlackboard, string &strError) argument
440 setElementSequence(const string &strDomain, const string &strConfiguration, const std::vector<string> &astrNewElementSequence, string &strError) argument
458 getElementSequence(const string &strDomain, const string &strConfiguration, string &strResult) const argument
473 setApplicationRule( const string &strDomain, const string &strConfiguration, const string &strApplicationRule, const CSelectionCriteriaDefinition *pSelectionCriteriaDefinition, string &strError) argument
489 clearApplicationRule(const string &strDomain, const string &strConfiguration, string &strError) argument
503 getApplicationRule(const string &strDomain, const string &strConfiguration, string &strResult) const argument
553 removeConfigurableElementFromDomain( const string &strDomain, CConfigurableElement *pConfigurableElement, string &strError) argument
567 findConfigurationBlackboard( const string &strDomain, const string &strConfiguration, const CConfigurableElement *pConfigurableElement, size_t &baseOffset, bool &bIsLastApplied, string &strError) const argument
595 findConfigurableDomain(const string &strDomain, string &strError) argument
604 findConfigurableDomain(const string &strDomain, string &strError) const argument
[all...]
H A DParameterMgr.h251 bool accessConfigurationValue(const std::string &strDomain, const std::string &stConfiguration,
266 bool createConfiguration(const std::string &strDomain, const std::string &strConfiguration,
268 bool deleteConfiguration(const std::string &strDomain, const std::string &strConfiguration,
270 bool renameConfiguration(const std::string &strDomain, const std::string &strConfiguration,
275 * @param[in] strDomain the domain name
280 bool restoreConfiguration(const std::string &strDomain, const std::string &strConfiguration,
283 bool saveConfiguration(const std::string &strDomain, const std::string &strConfiguration,
287 bool addConfigurableElementToDomain(const std::string &strDomain,
290 bool removeConfigurableElementFromDomain(const std::string &strDomain,
293 bool split(const std::string &strDomain, cons
[all...]
H A DParameterMgr.cpp2009 bool CParameterMgr::accessConfigurationValue(const string &strDomain, argument
2035 strDomain, strConfiguration, pConfigurableElement, baseOffset, bIsLastApplied,
2044 info() << "Element " << strPath << " in Domain " << strDomain
2301 bool CParameterMgr::createConfiguration(const string &strDomain, const string &strConfiguration, argument
2305 strDomain + "'");
2315 strDomain, strConfiguration, _pMainParameterBlackboard, strError),
2318 bool CParameterMgr::renameConfiguration(const string &strDomain, const string &strConfiguration, argument
2321 LOG_CONTEXT("Renaming domain '" + strDomain + "''s configuration '" + strConfiguration +
2324 return logResult(getConfigurableDomains()->renameConfiguration(strDomain, strConfiguration,
2329 bool CParameterMgr::deleteConfiguration(const string &strDomain, cons argument
2348 restoreConfiguration(const string &strDomain, const string &strConfiguration, core::Results &errors) argument
2369 saveConfiguration(const string &strDomain, const string &strConfiguration, string &strError) argument
2388 addConfigurableElementToDomain(const string &strDomain, const string &strConfigurableElementPath, string &strError) argument
2430 removeConfigurableElementFromDomain(const string &strDomain, const string &strConfigurableElementPath, string &strError) argument
2464 split(const string &strDomain, const string &strConfigurableElementPath, string &strError) argument
2504 setElementSequence(const string &strDomain, const string &strConfiguration, const std::vector<string> &astrNewElementSequence, string &strError) argument
2518 getApplicationRule(const string &strDomain, const string &strConfiguration, string &strResult) argument
2524 setApplicationRule(const string &strDomain, const string &strConfiguration, const string &strApplicationRule, string &strError) argument
2532 clearApplicationRule(const string &strDomain, const string &strConfiguration, string &strError) argument
[all...]
/external/parameter-framework/upstream/parameter/include/
H A DParameterMgrFullConnector.h107 bool accessConfigurationValue(const std::string &strDomain, const std::string &strConfiguration,
131 bool createConfiguration(const std::string &strDomain, const std::string &strConfiguration,
133 bool deleteConfiguration(const std::string &strDomain, const std::string &strConfiguration,
135 bool renameConfiguration(const std::string &strDomain, const std::string &strConfiguration,
140 * @param[in] strDomain the domain name
145 bool restoreConfiguration(const std::string &strDomain, const std::string &strConfiguration,
148 bool saveConfiguration(const std::string &strDomain, const std::string &strConfiguration,
152 bool addConfigurableElementToDomain(const std::string &strDomain,
155 bool removeConfigurableElementFromDomain(const std::string &strDomain,
158 bool split(const std::string &strDomain, cons
[all...]
/external/parameter-framework/upstream/bindings/python/
H A Dpfw.i126 bool accessConfigurationValue(const std::string &strDomain, const std::string &strConfiguration, const std::string& strPath, std::string& strValue, bool bSet, std::string& strError);
140 bool createConfiguration(const std::string& strDomain, const std::string& strConfiguration, std::string& strError);
141 bool deleteConfiguration(const std::string& strDomain, const std::string& strConfiguration, std::string& strError);
142 bool renameConfiguration(const std::string& strDomain, const std::string& strConfiguration, const std::string& strNewConfiguration, std::string& strError);
145 bool restoreConfiguration(const std::string& strDomain, const std::string& strConfiguration, std::list<std::string>& strError);
146 bool saveConfiguration(const std::string& strDomain, const std::string& strConfiguration, std::string& strError);
149 bool addConfigurableElementToDomain(const std::string& strDomain, const std::string& strConfigurableElementPath, std::string& strError);
150 bool removeConfigurableElementFromDomain(const std::string& strDomain, const std::string& strConfigurableElementPath, std::string& strError);
151 bool split(const std::string& strDomain, const std::string& strConfigurableElementPath, std::string& strError);
152 bool setElementSequence(const std::string& strDomain, cons
[all...]

Completed in 71 milliseconds