Home
last modified time | relevance | path

Searched refs:pStrValue (Results 1 – 15 of 15) sorted by relevance

/external/parameter-framework/upstream/parameter/
DSubsystem.cpp236 const string *pStrValue; in findSubsystemLevelMappingKeyValue() local
237 if (pInstanceConfigurableElement->getMappingData(strMappingKey, pStrValue)) { in findSubsystemLevelMappingKeyValue()
239 strMappingValue = *pStrValue; in findSubsystemLevelMappingKeyValue()
325 bool CSubsystem::getMappingData(const std::string &strKey, const std::string *&pStrValue) const in getMappingData()
329 return _pMappingData->getValue(strKey, pStrValue); in getMappingData()
351 const string *pStrValue; in handleMappingContext() local
353 if (pConfigurableElement->getMappingData(strKey, pStrValue)) { in handleMappingContext()
355 if (!context.setItem(item, &strKey, pStrValue)) { in handleMappingContext()
378 const string *pStrValue; in handleSubsystemObjectCreation() local
380 if (pInstanceConfigurableElement->getMappingData(strKey, pStrValue)) { in handleSubsystemObjectCreation()
[all …]
DComponentType.cpp52 bool CComponentType::getMappingData(const std::string &strKey, const std::string *&pStrValue) const in getMappingData()
55 return base::getMappingData(strKey, pStrValue) || in getMappingData()
56 (_pExtendsComponentType && _pExtendsComponentType->getMappingData(strKey, pStrValue)); in getMappingData()
DComponentInstance.cpp61 const std::string *&pStrValue) const in getMappingData()
64 return base::getMappingData(strKey, pStrValue) || in getMappingData()
65 (_pComponentType && _pComponentType->getMappingData(strKey, pStrValue)); in getMappingData()
DMappingData.cpp74 bool CMappingData::getValue(const std::string &strkey, const std::string *&pStrValue) const in getValue()
80 pStrValue = &it->second; in getValue()
DTypeElement.cpp64 bool CTypeElement::getMappingData(const std::string &strKey, const std::string *&pStrValue) const in getMappingData()
68 return _pMappingData->getValue(strKey, pStrValue); in getMappingData()
DInstanceConfigurableElement.cpp66 const std::string *&pStrValue) const in getMappingData()
69 return getTypeElement()->getMappingData(strKey, pStrValue); in getMappingData()
DElementHandle.cpp131 const std::string *pStrValue; in getMappingData() local
137 if (element->getMappingData(strKey, pStrValue)) { in getMappingData()
138 strValue = *pStrValue; in getMappingData()
DMappingData.h50 bool getValue(const std::string &strkey, const std::string *&pStrValue) const;
DComponentType.h47 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const;
DComponentInstance.h44 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const;
DTypeElement.h50 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const;
DSystemClass.h86 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override;
DInstanceConfigurableElement.h62 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const;
DSubsystem.h78 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const;
DConfigurableElement.h156 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const = 0;