Searched refs:pStrValue (Results 1 – 15 of 15) sorted by relevance
/external/parameter-framework/upstream/parameter/ |
D | Subsystem.cpp | 236 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 …]
|
D | ComponentType.cpp | 52 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()
|
D | ComponentInstance.cpp | 61 const std::string *&pStrValue) const in getMappingData() 64 return base::getMappingData(strKey, pStrValue) || in getMappingData() 65 (_pComponentType && _pComponentType->getMappingData(strKey, pStrValue)); in getMappingData()
|
D | MappingData.cpp | 74 bool CMappingData::getValue(const std::string &strkey, const std::string *&pStrValue) const in getValue() 80 pStrValue = &it->second; in getValue()
|
D | TypeElement.cpp | 64 bool CTypeElement::getMappingData(const std::string &strKey, const std::string *&pStrValue) const in getMappingData() 68 return _pMappingData->getValue(strKey, pStrValue); in getMappingData()
|
D | InstanceConfigurableElement.cpp | 66 const std::string *&pStrValue) const in getMappingData() 69 return getTypeElement()->getMappingData(strKey, pStrValue); in getMappingData()
|
D | ElementHandle.cpp | 131 const std::string *pStrValue; in getMappingData() local 137 if (element->getMappingData(strKey, pStrValue)) { in getMappingData() 138 strValue = *pStrValue; in getMappingData()
|
D | MappingData.h | 50 bool getValue(const std::string &strkey, const std::string *&pStrValue) const;
|
D | ComponentType.h | 47 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override;
|
D | ComponentInstance.h | 44 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override;
|
D | TypeElement.h | 50 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const;
|
D | SystemClass.h | 86 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override;
|
D | InstanceConfigurableElement.h | 62 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override;
|
D | Subsystem.h | 78 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override;
|
D | ConfigurableElement.h | 156 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const = 0;
|