OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pStrValue
(Results
1 - 15
of
15
) sorted by null
/external/parameter-framework/upstream/parameter/
ComponentInstance.h
44
virtual bool getMappingData(const std::string &strKey, const std::string *&
pStrValue
) const;
ComponentType.h
47
virtual bool getMappingData(const std::string &strKey, const std::string *&
pStrValue
) const;
ComponentType.cpp
52
bool CComponentType::getMappingData(const std::string &strKey, const std::string *&
pStrValue
) const
55
return base::getMappingData(strKey,
pStrValue
) ||
56
(_pExtendsComponentType && _pExtendsComponentType->getMappingData(strKey,
pStrValue
));
Subsystem.cpp
236
const string *
pStrValue
;
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
;
353
if (pConfigurableElement->getMappingData(strKey,
pStrValue
)) {
355
if (!context.setItem(item, &strKey,
pStrValue
)) {
378
const string *
pStrValue
;
380
if (pInstanceConfigurableElement->getMappingData(strKey,
pStrValue
)) {
[
all
...]
ComponentInstance.cpp
61
const std::string *&
pStrValue
) const
64
return base::getMappingData(strKey,
pStrValue
) ||
65
(_pComponentType && _pComponentType->getMappingData(strKey,
pStrValue
));
MappingData.h
50
bool getValue(const std::string &strkey, const std::string *&
pStrValue
) const;
MappingData.cpp
74
bool CMappingData::getValue(const std::string &strkey, const std::string *&
pStrValue
) const
80
pStrValue
= &it->second;
TypeElement.h
50
virtual bool getMappingData(const std::string &strKey, const std::string *&
pStrValue
) const;
InstanceConfigurableElement.cpp
66
const std::string *&
pStrValue
) const
69
return getTypeElement()->getMappingData(strKey,
pStrValue
);
TypeElement.cpp
64
bool CTypeElement::getMappingData(const std::string &strKey, const std::string *&
pStrValue
) const
68
return _pMappingData->getValue(strKey,
pStrValue
);
InstanceConfigurableElement.h
62
virtual bool getMappingData(const std::string &strKey, const std::string *&
pStrValue
) const;
SystemClass.h
86
bool getMappingData(const std::string &strKey, const std::string *&
pStrValue
) const override;
ElementHandle.cpp
131
const std::string *
pStrValue
;
137
if (element->getMappingData(strKey,
pStrValue
)) {
138
strValue = *
pStrValue
;
ConfigurableElement.h
152
* @param[out]
pStrValue
the associated value
156
virtual bool getMappingData(const std::string &strKey, const std::string *&
pStrValue
) const = 0;
Subsystem.h
78
virtual bool getMappingData(const std::string &strKey, const std::string *&
pStrValue
) const;
Completed in 66 milliseconds