Home
last modified time | relevance | path

Searched refs:CParameterMgrPlatformConnector (Results 1 – 5 of 5) sorted by relevance

/external/parameter-framework/parameter/
DParameterMgrPlatformConnector.cpp38 CParameterMgrPlatformConnector::CParameterMgrPlatformConnector( in CParameterMgrPlatformConnector() function in CParameterMgrPlatformConnector
43 _pParameterMgrLogger = new CParameterMgrLogger<CParameterMgrPlatformConnector>(*this); in CParameterMgrPlatformConnector()
47 CParameterMgrPlatformConnector::~CParameterMgrPlatformConnector() in ~CParameterMgrPlatformConnector()
54 ISelectionCriterionTypeInterface* CParameterMgrPlatformConnector::createSelectionCriterionType(bool… in createSelectionCriterionType()
61 ISelectionCriterionInterface* CParameterMgrPlatformConnector::createSelectionCriterion(const string… in createSelectionCriterion()
69 ISelectionCriterionInterface* CParameterMgrPlatformConnector::getSelectionCriterion(const string& s… in getSelectionCriterion()
75 void CParameterMgrPlatformConnector::applyConfigurations() in applyConfigurations()
83 CParameterHandle* CParameterMgrPlatformConnector::createParameterHandle(const string& strPath, stri… in createParameterHandle()
91 void CParameterMgrPlatformConnector::setLogger(CParameterMgrPlatformConnector::ILogger* pLogger) in setLogger()
96 bool CParameterMgrPlatformConnector::getForceNoRemoteInterface() const in getForceNoRemoteInterface()
[all …]
/external/parameter-framework/parameter/include/
DParameterMgrPlatformConnector.h39 class CParameterMgrPlatformConnector
41 friend class CParameterMgrLogger<CParameterMgrPlatformConnector>;
53 CParameterMgrPlatformConnector(const std::string& strConfigurationFilePath);
54 ~CParameterMgrPlatformConnector(); // Not virtual since not supposed to be derived!
160 CParameterMgrPlatformConnector(const CParameterMgrPlatformConnector&);
161 CParameterMgrPlatformConnector& operator=(const CParameterMgrPlatformConnector&);
172 CParameterMgrLogger<CParameterMgrPlatformConnector>* _pParameterMgrLogger;
/external/parameter-framework/test/test-platform/
DTestPlatform.cpp45 class CParameterMgrPlatformConnectorLogger : public CParameterMgrPlatformConnector::ILogger
64 _pParameterMgrPlatformConnector(new CParameterMgrPlatformConnector(strClass)), in CTestPlatform()
106 &CTestPlatform::setter<& CParameterMgrPlatformConnector::setFailureOnMissingSubsystem>, in CTestPlatform()
111 &CTestPlatform::getter<& CParameterMgrPlatformConnector::getFailureOnMissingSubsystem>, in CTestPlatform()
117 &CTestPlatform::setter<& CParameterMgrPlatformConnector::setFailureOnFailedSettingsLoad>, in CTestPlatform()
122 &CTestPlatform::getter<& CParameterMgrPlatformConnector::getFailureOnFailedSettingsLoad>, in CTestPlatform()
128 &CTestPlatform::setter<& CParameterMgrPlatformConnector::setValidateSchemasOnStart>, in CTestPlatform()
133 &CTestPlatform::getter<& CParameterMgrPlatformConnector::getValidateSchemasOnStart>, in CTestPlatform()
DTestPlatform.h105 typedef bool (CParameterMgrPlatformConnector::*setter_t)(bool, std::string&);
120 typedef bool (CParameterMgrPlatformConnector::*getter_t)();
145 CParameterMgrPlatformConnector* _pParameterMgrPlatformConnector;
/external/parameter-framework/bindings/c/
DParameterFramework.cpp50 typedef CParameterMgrPlatformConnector Pfw;
101 class LogWrapper : public CParameterMgrPlatformConnector::ILogger
232 handle->pfw = new CParameterMgrPlatformConnector(configPath); in pfwStart()