Home
last modified time | relevance | path

Searched refs:getMappingData (Results 1 – 17 of 17) sorted by relevance

/external/parameter-framework/upstream/parameter/
DComponentType.cpp52 bool CComponentType::getMappingData(const std::string &strKey, const std::string *&pStrValue) const in getMappingData() function in CComponentType
55 return base::getMappingData(strKey, pStrValue) || in getMappingData()
56 (_pExtendsComponentType && _pExtendsComponentType->getMappingData(strKey, pStrValue)); in getMappingData()
DComponentInstance.cpp60 bool CComponentInstance::getMappingData(const std::string &strKey, in getMappingData() function in CComponentInstance
64 return base::getMappingData(strKey, pStrValue) || in getMappingData()
65 (_pComponentType && _pComponentType->getMappingData(strKey, pStrValue)); in getMappingData()
DTypeElement.cpp64 bool CTypeElement::getMappingData(const std::string &strKey, const std::string *&pStrValue) const in getMappingData() function in CTypeElement
117 if (!getMappingData()->init(rawMapping, error)) { in fromXml()
137 CMappingData *CTypeElement::getMappingData() in getMappingData() function in CTypeElement
DTypeElement.h50 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const;
107 CMappingData *getMappingData();
DSubsystem.cpp237 if (pInstanceConfigurableElement->getMappingData(strMappingKey, pStrValue)) { in findSubsystemLevelMappingKeyValue()
325 bool CSubsystem::getMappingData(const std::string &strKey, const std::string *&pStrValue) const in getMappingData() function in CSubsystem
353 if (pConfigurableElement->getMappingData(strKey, pStrValue)) { in handleMappingContext()
380 if (pInstanceConfigurableElement->getMappingData(strKey, pStrValue)) { in handleSubsystemObjectCreation()
DInstanceConfigurableElement.cpp65 bool CInstanceConfigurableElement::getMappingData(const std::string &strKey, in getMappingData() function in CInstanceConfigurableElement
69 return getTypeElement()->getMappingData(strKey, pStrValue); in getMappingData()
DComponentType.h47 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override;
DComponentInstance.h44 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override;
DSystemClass.h86 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override;
DInstanceConfigurableElement.h62 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override;
DElementHandle.cpp129 bool ElementHandle::getMappingData(const string &strKey, string &strValue) const in getMappingData() function in ElementHandle
137 if (element->getMappingData(strKey, pStrValue)) { in getMappingData()
DSubsystem.h78 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override;
DConfigurableElement.h156 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const = 0;
DSystemClass.cpp82 bool CSystemClass::getMappingData(const std::string & /*strKey*/, in getMappingData() function in CSystemClass
/external/parameter-framework/upstream/test/functional-tests/include/
DElementHandle.hpp65 std::string getMappingData(const std::string &key) in getMappingData() function in parameterFramework::ElementHandle
68 if (not EH::getMappingData(key, value)) { in getMappingData() member in parameterFramework::ElementHandle::getMappingData::EH
/external/parameter-framework/upstream/parameter/include/
DElementHandle.h103 bool getMappingData(const std::string &strKey, std::string &strValue) const;
/external/parameter-framework/upstream/test/functional-tests/
DHandle.cpp609 CHECK(handle.getMappingData(valid + "K") == valid + "V");
615 CHECK_THROWS_AS(handle.getMappingData(invalid + "K"), Exception);