HomeSort by relevance Sort by last modified time
    Searched refs:strError (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/parameter-framework/upstream/parameter/
XmlDomainSerializingContext.h 39 CXmlDomainSerializingContext(std::string &strError, bool bWithSettings)
40 : base(strError), _bWithSettings(bWithSettings)
ConfigurationAccessContext.cpp 36 CConfigurationAccessContext::CConfigurationAccessContext(std::string &strError,
41 : base(strError, pParameterBlackboard, bValueSpaceIsRaw, bOutputRawFormatIsHex),
46 CConfigurationAccessContext::CConfigurationAccessContext(string &strError, bool bSerializeOut)
47 : base(strError), _bSerializeOut(bSerializeOut)
ParameterMgrFullConnector.cpp 68 bool CParameterMgrFullConnector::setTuningMode(bool bOn, string &strError)
70 return _pParameterMgr->setTuningMode(bOn, strError);
98 bool CParameterMgrFullConnector::setAutoSync(bool bAutoSyncOn, string &strError)
100 return _pParameterMgr->setAutoSync(bAutoSyncOn, strError);
108 bool CParameterMgrFullConnector::sync(string &strError)
110 return _pParameterMgr->sync(strError);
114 bool bSet, string &strError)
116 return _pParameterMgr->accessParameterValue(strPath, strValue, bSet, strError);
122 bool bSet, string &strError)
125 bSet, strError);
    [all...]
ElementLocator.cpp 41 bool CElementLocator::locate(const string &strPath, CElement **ppElement, string &strError)
47 strError = "Invalid Path";
59 strError = "Path not found: " + strPath;
69 strError = "Path not found: " + strPath;
79 strError = "Path not found: " + strPath;
Mapper.h 40 bool &bKeepDiving, std::string &strError) = 0;
Syncer.h 40 std::string &strError) = 0;
ConfigurationAccessContext.h 39 CConfigurationAccessContext(std::string &strError, CParameterBlackboard *pParameterBlackboard,
43 CConfigurationAccessContext(std::string &strError, bool bSerializeOut);
VirtualSyncer.cpp 42 bool CVirtualSyncer::sync(CParameterBlackboard &parameterBlackboard, bool bBack, string &strError)
47 CParameterAccessContext parameterAccessContext(strError, &parameterBlackboard);
XmlElementSerializingContext.cpp 36 CXmlElementSerializingContext::CXmlElementSerializingContext(string &strError) : base(strError)
XmlParameterSerializingContext.cpp 37 string &strError)
38 : base(strError), mAccessContext(context)
SelectionCriterionRule.cpp 61 bool CSelectionCriterionRule::parse(CRuleParser &ruleParser, string &strError)
70 strError = "Couldn't find selection criterion " + ruleParser.getType();
78 if (!ruleParser.next(strMatchesWhen, strError)) {
85 if (!ruleParser.next(strValue, strError)) {
91 if (!setMatchesWhen(strMatchesWhen, strError)) {
93 strError = "Verb error: " + strError;
101 strError = "Value error: \"" + strValue + "\" is not part of criterion \"" +
171 string strError;
173 if (!setMatchesWhen(strMatchesWhen, strError)) {
    [all...]
SubsystemObject.cpp 97 string strError;
100 CParameterAccessContext parameterAccessContext(strError, &parameterBlackboard);
107 bool CSubsystemObject::sync(CParameterBlackboard &parameterBlackboard, bool bBack, string &strError)
127 strError = "Susbsystem not alive";
131 if (!bIsSubsystemAlive || !accessHW(bBack, strError)) {
145 bool CSubsystemObject::sendToHW(string &strError)
147 strError = "Send to HW interface not implemented at subsystem level";
152 bool CSubsystemObject::receiveFromHW(string & /*strError*/)
161 bool CSubsystemObject::accessHW(bool bReceive, string &strError)
166 return receiveFromHW(strError);
    [all...]
ParameterMgrPlatformConnector.cpp 87 string &strError) const
91 return _pParameterMgr->createParameterHandle(strPath, strError);
95 string &strError) const
97 return _pParameterMgr->createElementHandle(strPath, strError);
116 bool CParameterMgrPlatformConnector::setFailureOnMissingSubsystem(bool bFail, string &strError)
120 strError = "Can not set missing subsystem policy while running";
134 std::string &strError)
138 strError = "Can not set failure on failed settings load policy while running";
162 std::string &strError)
166 strError = "Can not enable xml validation after the start of the parameter-framework"
    [all...]
RuleParser.cpp 61 bool CRuleParser::parse(CCompoundRule *pParentRule, string &strError)
65 if (!iterate(strError)) {
76 if (!pCompoundRule->parse(*this, strError)) {
93 if (!parse(pCompoundRule, strError)) {
110 if (!pCriterionRule->parse(*this, strError)) {
132 strError = "Syntax error, no rule found";
147 bool CRuleParser::iterate(string &strError)
178 strError = "Missing opening brace";
198 strError = "Missing closing brace";
206 strError = "Syntax error"
    [all...]
ConfigurableDomains.h 48 bool createDomain(const std::string &strName, std::string &strError);
58 * @param[in,out] strError error message
62 bool addDomain(CConfigurableDomain &domain, bool bOverwrite, std::string &strError);
68 * @param[in,out] strError error message
73 bool deleteDomain(const std::string &strName, std::string &strError);
76 std::string &strError);
78 std::string &strError);
80 std::string &strError) const;
99 const CParameterBlackboard *pMainBlackboard, std::string &strError);
101 std::string &strError);
    [all...]
ConfigurableDomains.cpp 116 bool CConfigurableDomains::createDomain(const string &strName, string &strError)
121 strError = "Already existing configurable domain";
132 bool CConfigurableDomains::addDomain(CConfigurableDomain &domain, bool bOverwrite, string &strError)
141 strError = "Can't add domain \"" + strDomainName +
161 bool CConfigurableDomains::deleteDomain(const string &strName, string &strError)
163 CConfigurableDomain *pConfigurableDomain = findConfigurableDomain(strName, strError);
180 string &strError)
182 CConfigurableDomain *pConfigurableDomain = findConfigurableDomain(strName, strError);
190 return pConfigurableDomain->rename(strNewName, strError);
194 string &strError)
    [all...]
ElementLocator.h 42 bool locate(const std::string &strPath, CElement **ppElement, std::string &strError);
Rule.h 43 virtual bool parse(CRuleParser &ruleParser, std::string &strError) = 0;
VirtualSyncer.h 42 virtual bool sync(CParameterBlackboard &parameterBlackboard, bool bBack, std::string &strError);
XmlDomainExportContext.h 38 CXmlDomainExportContext(std::string &strError, bool bWithSettings = true,
40 : base(strError, bWithSettings), _bValueSpaceIsRaw(bValueSpaceIsRaw),
XmlDomainImportContext.h 41 CXmlDomainImportContext(std::string &strError, bool bWithSettings, CSystemClass &systemClass)
42 : base(strError, bWithSettings), _systemClass(systemClass)
  /external/parameter-framework/upstream/remote-processor/
RemoteProcessorServerInterface.h 38 virtual bool start(std::string &strError) = 0;
  /external/parameter-framework/upstream/skeleton-subsystem/
SkeletonSubsystemObject.h 46 virtual bool sendToHW(std::string &strError);
47 virtual bool receiveFromHW(std::string &strError);
51 virtual bool accessHW(bool bReceive, std::string &strError);
  /external/parameter-framework/upstream/parameter/include/
ParameterMgrFullConnector.h 89 bool setTuningMode(bool bOn, std::string &strError);
100 bool setAutoSync(bool bAutoSyncOn, std::string &strError);
102 bool sync(std::string &strError);
106 std::string &strError);
109 std::string &strError);
122 bool createDomain(const std::string &strName, std::string &strError);
123 bool deleteDomain(const std::string &strName, std::string &strError);
125 std::string &strError);
126 bool deleteAllDomains(std::string &strError);
132 std::string &strError);
    [all...]
  /external/libxml2/win32/wince/
wincecompat.c 13 char *strError[]= {"Error 0","","No such file or directory","","","","","Arg list too long",
62 char *strerror(int errnum) function
65 return strError[MAX_STRERROR];
67 return strError[errnum];

Completed in 311 milliseconds

1 2 3