HomeSort by relevance Sort by last modified time
    Searched refs:strName (Results 26 - 50 of 166) sorted by null

12 3 4 5 6 7

  /external/parameter-framework/upstream/test/test-subsystem/
TESTSubsystem.h 37 CTESTSubsystem(const std::string &strName, core::log::Logger &logger);
TESTSubsystem.cpp 46 CTESTSubsystem::CTESTSubsystem(const std::string &strName, core::log::Logger &logger)
47 : base(strName, logger)
  /external/parameter-framework/upstream/parameter/
StringParameterType.cpp 38 CStringParameterType::CStringParameterType(const string &strName) : base(strName)
ComponentInstance.h 41 CComponentInstance(const std::string &strName);
ComponentType.h 41 CComponentType(const std::string &strName);
PluginLocation.h 39 CPluginLocation(const std::string &strName, const std::string &strKind);
StringParameter.h 39 CStringParameter(const std::string &strName, const CTypeElement *pTypeElement);
StringParameterType.h 41 CStringParameterType(const std::string &strName);
Element.h 51 CElement(const std::string &strName = "");
60 void setName(const std::string &strName);
61 bool rename(const std::string &strName, std::string &strError);
102 const CElement *findChild(const std::string &strName) const;
103 CElement *findChild(const std::string &strName);
Element.cpp 44 CElement::CElement(const string &strName) : _strName(strName)
222 string strName = getName();
224 if (!strName.empty()) {
226 xmlElement.setNameAttribute(strName);
231 void CElement::setName(const string &strName)
233 _strName = strName;
241 bool CElement::rename(const string &strName, string &strError)
248 if (pParentChild != this && pParentChild->getName() == strName) {
258 setName(strName);
    [all...]
ParameterMgrFullConnector.cpp 133 bool CParameterMgrFullConnector::createDomain(const string &strName, string &strError)
135 return _pParameterMgr->createDomain(strName, strError);
138 bool CParameterMgrFullConnector::deleteDomain(const string &strName, string &strError)
140 return _pParameterMgr->deleteDomain(strName, strError);
143 bool CParameterMgrFullConnector::renameDomain(const string &strName, const string &strNewName,
146 return _pParameterMgr->renameDomain(strName, strNewName, strError);
190 bool CParameterMgrFullConnector::setSequenceAwareness(const string &strName, bool bSequenceAware,
193 return _pParameterMgr->setSequenceAwareness(strName, bSequenceAware, strResult);
196 bool CParameterMgrFullConnector::getSequenceAwareness(const string &strName, bool &bSequenceAware,
199 return _pParameterMgr->getSequenceAwareness(strName, bSequenceAware, strResult)
    [all...]
BooleanParameterType.h 39 CBooleanParameterType(const std::string &strName);
ParameterMgrPlatformConnector.cpp 62 const string &strName, const ISelectionCriterionTypeInterface *pSelectionCriterionType)
67 strName, static_cast<const CSelectionCriterionType *>(pSelectionCriterionType));
72 const string &strName) const
74 return _pParameterMgr->getSelectionCriterion(strName);
BooleanParameterType.cpp 36 CBooleanParameterType::CBooleanParameterType(const std::string &strName) : base(strName)
ComponentType.cpp 38 CComponentType::CComponentType(const std::string &strName) : base(strName)
StringParameter.cpp 40 CStringParameter::CStringParameter(const string &strName, const CTypeElement *pTypeElement)
41 : base(strName, pTypeElement)
XmlFileIncluderElement.cpp 39 CXmlFileIncluderElement::CXmlFileIncluderElement(const std::string &strName,
43 : base(strName, strKind), _bValidateSchemasOnStart(bValidateWithSchemas),
ConfigurableDomain.h 55 CConfigurableDomain(const std::string &strName);
63 bool createConfiguration(const std::string &strName,
65 bool deleteConfiguration(const std::string &strName, std::string &strError);
66 bool renameConfiguration(const std::string &strName, const std::string &strNewName,
81 bool saveConfiguration(const std::string &strName, const CParameterBlackboard *pMainBlackboard,
BitParameter.h 39 CBitParameter(const std::string &strName, const CTypeElement *pTypeElement);
FloatingPointParameterType.h 38 CFloatingPointParameterType(const std::string &strName);
  /frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/plugin/
PolicySubsystem.h 31 PolicySubsystem(const std::string &strName, core::log::Logger& logger);
  /external/parameter-framework/upstream/test/test-platform/
TestPlatform.h 136 bool createExclusiveSelectionCriterionFromStateList(const std::string &strName,
139 bool createInclusiveSelectionCriterionFromStateList(const std::string &strName,
143 bool createExclusiveSelectionCriterion(const std::string &strName, size_t nbValues,
145 bool createInclusiveSelectionCriterion(const std::string &strName, size_t nbValues,
147 bool setCriterionState(const std::string &strName, uint32_t uiState, std::string &strResult);
TestPlatform.cpp 256 const string &strName, const IRemoteCommand &remoteCommand, string &strResult)
278 mParameterMgrPlatformConnector.createSelectionCriterion(strName, pCriterionType);
284 const string &strName, const IRemoteCommand &remoteCommand, string &strResult)
305 mParameterMgrPlatformConnector.createSelectionCriterion(strName, pCriterionType);
310 bool CTestPlatform::createExclusiveSelectionCriterion(const string &strName, size_t nbStates,
332 mParameterMgrPlatformConnector.createSelectionCriterion(strName, pCriterionType);
337 bool CTestPlatform::createInclusiveSelectionCriterion(const string &strName, size_t nbStates,
358 mParameterMgrPlatformConnector.createSelectionCriterion(strName, pCriterionType);
363 bool CTestPlatform::setCriterionState(const string &strName, uint32_t uiState, string &strResult)
366 mParameterMgrPlatformConnector.getSelectionCriterion(strName);
    [all...]
  /external/parameter-framework/upstream/parameter/include/
ParameterMgrPlatformConnector.h 73 const std::string &strName,
76 ISelectionCriterionInterface *getSelectionCriterion(const std::string &strName) const;
ParameterMgrFullConnector.h 122 bool createDomain(const std::string &strName, std::string &strError);
123 bool deleteDomain(const std::string &strName, std::string &strError);
124 bool renameDomain(const std::string &strName, const std::string &strNewName,
127 bool setSequenceAwareness(const std::string &strName, bool bSequenceAware,
129 bool getSequenceAwareness(const std::string &strName, bool &bSequenceAware,

Completed in 153 milliseconds

12 3 4 5 6 7