/external/parameter-framework/upstream/parameter/ |
D | PathNavigator.cpp | 33 CPathNavigator::CPathNavigator(const std::string &strPath) in CPathNavigator() argument 35 init(strPath); in CPathNavigator() 38 void CPathNavigator::init(const std::string &strPath) in init() argument 40 Tokenizer tokenizer(strPath, "/"); in init() 44 _bValid = checkPathFormat(strPath); in init() 95 std::string strPath = "/"; in getCurrentPath() local 99 return strPath; in getCurrentPath() 105 strPath += _astrItems[item] + "/"; in getCurrentPath() 108 strPath += _astrItems[item]; in getCurrentPath() 110 return strPath; in getCurrentPath()
|
D | ElementLocator.cpp | 41 bool CElementLocator::locate(const string &strPath, CElement **ppElement, string &strError) in locate() argument 43 CPathNavigator pathNavigator(strPath); in locate() 59 strError = "Path not found: " + strPath; in locate() 69 strError = "Path not found: " + strPath; in locate() 79 strError = "Path not found: " + strPath; in locate()
|
D | XmlFileIncluderElement.cpp | 57 std::string strPath; in fromXml() local 58 xmlElement.getAttribute("Path", strPath); in fromXml() 59 strPath = CXmlDocSource::mkUri(elementSerializingContext.getXmlUri(), strPath); in fromXml() 64 _xmlDoc *doc = CXmlDocSource::mkXmlDoc(strPath, true, true, elementSerializingContext); in fromXml() 74 elementSerializingContext.setError("Could not parse document \"" + strPath + "\""); in fromXml()
|
D | ParameterMgrPlatformConnector.cpp | 86 CParameterHandle *CParameterMgrPlatformConnector::createParameterHandle(const string &strPath, in createParameterHandle() argument 91 return _pParameterMgr->createParameterHandle(strPath, strError); in createParameterHandle() 94 ElementHandle *CParameterMgrPlatformConnector::createElementHandle(const string &strPath, in createElementHandle() argument 97 return _pParameterMgr->createElementHandle(strPath, strError); in createElementHandle()
|
D | ParameterMgrFullConnector.cpp | 113 bool CParameterMgrFullConnector::accessParameterValue(const string &strPath, string &strValue, in accessParameterValue() argument 116 return _pParameterMgr->accessParameterValue(strPath, strValue, bSet, strError); in accessParameterValue() 121 const string &strPath, string &strValue, in accessConfigurationValue() argument 124 return _pParameterMgr->accessConfigurationValue(strDomain, strConfiguration, strPath, strValue, in accessConfigurationValue() 128 bool CParameterMgrFullConnector::getParameterMapping(const string &strPath, string &strValue) const in getParameterMapping() argument 130 return _pParameterMgr->getParameterMapping(strPath, strValue); in getParameterMapping()
|
D | PathNavigator.h | 39 CPathNavigator(const std::string &strPath); 54 void init(const std::string &strPath);
|
D | ParameterMgr.h | 119 const CConfigurableElement *getConfigurableElement(const std::string &strPath, 130 CConfigurableElement *getConfigurableElement(const std::string &strPath, std::string &strError); 132 CParameterHandle *createParameterHandle(const std::string &strPath, std::string &strError); 240 bool accessParameterValue(const std::string &strPath, std::string &strValue, bool bSet, 250 bool getParameterMapping(const std::string &strPath, std::string &strValue) const; 252 const std::string &strPath, std::string &strValue, bool bSet, 639 bool accessValue(CParameterAccessContext ¶meterAccessContext, const std::string &strPath, 641 bool doSetValue(const std::string &strPath, const std::string &strValue, bool bRawValueSpace, 643 bool doGetValue(const std::string &strPath, std::string &strValue, bool bRawValueSpace,
|
D | ParameterMgr.cpp | 697 const CConfigurableElement *CParameterMgr::getConfigurableElement(const string &strPath, in getConfigurableElement() argument 700 CPathNavigator pathNavigator(strPath); in getConfigurableElement() 713 strError = "Path not found: " + strPath; in getConfigurableElement() 725 CConfigurableElement *CParameterMgr::getConfigurableElement(const string &strPath, string &strError) in getConfigurableElement() argument 730 return const_cast<CConfigurableElement *>(constThis->getConfigurableElement(strPath, strError)); in getConfigurableElement() 734 CParameterHandle *CParameterMgr::createParameterHandle(const string &strPath, string &strError) in createParameterHandle() argument 736 CConfigurableElement *pConfigurableElement = getConfigurableElement(strPath, strError); in createParameterHandle() 741 strError = "Element not found: " + strPath; in createParameterHandle() 748 strError = "Not a parameter: " + strPath; in createParameterHandle() 1959 bool CParameterMgr::accessParameterValue(const string &strPath, string &strValue, bool bSet, in accessParameterValue() argument [all …]
|
D | ElementLocator.h | 42 bool locate(const std::string &strPath, CElement **ppElement, std::string &strError);
|
/external/parameter-framework/upstream/parameter/include/ |
D | ParameterMgrFullConnector.h | 105 bool accessParameterValue(const std::string &strPath, std::string &strValue, bool bSet, 108 const std::string &strPath, std::string &strValue, bool bSet, 119 bool getParameterMapping(const std::string &strPath, std::string &strValue) const;
|
D | ParameterMgrPlatformConnector.h | 94 CParameterHandle *createParameterHandle(const std::string &strPath,
|
/external/parameter-framework/upstream/bindings/python/ |
D | pfw.i | 125 …bool accessParameterValue(const std::string& strPath, std::string& strValue, bool bSet, std::strin… 126 …ring &strDomain, const std::string &strConfiguration, const std::string& strPath, std::string& str… 129 bool getParameterMapping(const std::string& strPath, std::string& strValue) const;
|