Home
last modified time | relevance | path

Searched refs:strKey (Results 1 – 14 of 14) sorted by relevance

/external/parameter-framework/parameter/
DMappingContext.cpp85 assert(_pstItemArray[uiIndex].strKey != pStrKey); in setItem()
95 _pstItemArray[uiItemType].strKey = pStrKey; in setItem()
121 const string* CMappingContext::getItem(const string& strKey) const in getItem()
127 if (_pstItemArray[uiItemType].strKey != NULL && in getItem()
128 strKey == *_pstItemArray[uiItemType].strKey) { in getItem()
DSubsystem.cpp355 const string& strKey, in getMappingError() argument
360 "mapping:\n" + strKey + " " + in getMappingError()
366 bool CSubsystem::getMappingData(const std::string& strKey, const std::string*& pStrValue) const in getMappingData() argument
370 return _pMappingData->getValue(strKey, pStrValue); in getMappingData()
386 const string& strKey = _contextMappingKeyArray[uiItem]; in handleMappingContext() local
389 if (pConfigurableElementWithMapping->getMappingData(strKey, pStrValue)) { in handleMappingContext()
391 if (!context.setItem(uiItem, &strKey, pStrValue)) { in handleMappingContext()
393 strError = getMappingError(strKey, "Already set", pConfigurableElementWithMapping); in handleMappingContext()
416 string strKey = pSubsystemObjectCreator->getMappingKey(); in handleSubsystemObjectCreation() local
420 if (pInstanceConfigurableElement->getMappingData(strKey, pStrValue)) { in handleSubsystemObjectCreation()
[all …]
DMappingData.cpp53 std::string strKey, strValue; in fromXml() local
59 strKey = strMappingElement; in fromXml()
65 strKey = strMappingElement.substr(0, iFistDelimiterOccurrence); in fromXml()
72 if (!addValue(strKey, strValue)) { in fromXml()
74 …ror("Duplicate Mapping data: Unable to process Mapping element key = " + strKey + ", value = " + s… in fromXml()
DComponentType.cpp52 bool CComponentType::getMappingData(const std::string& strKey, const std::string*& pStrValue) const in getMappingData() argument
55 …return base::getMappingData(strKey, pStrValue) || (_pExtendsComponentType && _pExtendsComponentTyp… in getMappingData()
DComponentInstance.cpp52 bool CComponentInstance::getMappingData(const std::string& strKey, const std::string*& pStrValue) c… in getMappingData() argument
55 …return base::getMappingData(strKey, pStrValue) || (_pComponentType && _pComponentType->getMappingD… in getMappingData()
DMappingContext.h39 const std::string* strKey; member
75 const std::string* getItem(const std::string& strKey) const;
DTypeElement.cpp62 bool CTypeElement::getMappingData(const std::string& strKey, const std::string*& pStrValue) const in getMappingData() argument
66 return _pMappingData->getValue(strKey, pStrValue); in getMappingData()
DSubsystem.h74 virtual bool getMappingData(const std::string& strKey, const std::string*& pStrValue) const;
144 const std::string& strKey,
DInstanceConfigurableElement.cpp57 bool CInstanceConfigurableElement::getMappingData(const std::string& strKey, const std::string*& pS… in getMappingData() argument
60 return getTypeElement()->getMappingData(strKey, pStrValue); in getMappingData()
DConfigurableElementWithMapping.h54 virtual bool getMappingData(const std::string& strKey, const std::string*& pStrValue) const = 0;
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.h48 virtual bool getMappingData(const std::string& strKey, const std::string*& pStrValue) const;
DInstanceConfigurableElement.h59 virtual bool getMappingData(const std::string& strKey, const std::string*& pStrValue) const;