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

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

Completed in 1015 milliseconds