Searched defs:strError (Results 1 - 25 of 36) sorted by relevance

12

/external/parameter-framework/upstream/parameter/
H A DVirtualSyncer.cpp42 bool CVirtualSyncer::sync(CParameterBlackboard &parameterBlackboard, bool bBack, string &strError) argument
47 CParameterAccessContext parameterAccessContext(strError, &parameterBlackboard);
H A DXmlDomainSerializingContext.h39 CXmlDomainSerializingContext(std::string &strError, bool bWithSettings) argument
40 : base(strError), _bWithSettings(bWithSettings)
H A DConfigurationAccessContext.cpp36 CConfigurationAccessContext::CConfigurationAccessContext(std::string &strError, argument
41 : base(strError, pParameterBlackboard, bValueSpaceIsRaw, bOutputRawFormatIsHex),
46 CConfigurationAccessContext::CConfigurationAccessContext(string &strError, bool bSerializeOut) argument
47 : base(strError), _bSerializeOut(bSerializeOut)
H A DElementLocator.cpp41 bool CElementLocator::locate(const string &strPath, CElement **ppElement, string &strError) argument
47 strError = "Invalid Path";
59 strError = "Path not found: " + strPath;
69 strError = "Path not found: " + strPath;
79 strError = "Path not found: " + strPath;
H A DXmlElementSerializingContext.cpp36 CXmlElementSerializingContext::CXmlElementSerializingContext(string &strError) : base(strError) argument
H A DXmlParameterSerializingContext.cpp37 string &strError)
38 : base(strError), mAccessContext(context)
36 CXmlParameterSerializingContext(CParameterAccessContext &context, string &strError) argument
H A DPathNavigator.cpp53 bool CPathNavigator::navigateThrough(const std::string &strItemName, std::string &strError) argument
57 strError = "Path not well formed: " + getCurrentPath();
66 strError =
74 strError = "Path not found: " + getCurrentPath() + ", expected: " + strItemName +
H A DSyncerSet.cpp60 std::string strError; local
69 if (!pSyncer->sync(parameterBlackboard, bBack, strError)) {
73 errors->push_back(strError);
H A DXmlDomainExportContext.h38 CXmlDomainExportContext(std::string &strError, bool bWithSettings = true, argument
40 : base(strError, bWithSettings), _bValueSpaceIsRaw(bValueSpaceIsRaw),
H A DXmlDomainImportContext.h41 CXmlDomainImportContext(std::string &strError, bool bWithSettings, CSystemClass &systemClass) argument
42 : base(strError, bWithSettings), _systemClass(systemClass)
H A DRuleParser.cpp61 bool CRuleParser::parse(CCompoundRule *pParentRule, string &strError) argument
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) argument
178 strError = "Missing opening brace";
198 strError = "Missing closing brace";
206 strError
241 next(string &strNext, string &strError) argument
[all...]
H A DCompoundRule.cpp60 bool CCompoundRule::parse(CRuleParser &ruleParser, string &strError) argument
75 strError = "Unknown compound rule type: ";
76 strError += ruleParser.getType();
H A DParameterAccessContext.cpp34 CParameterAccessContext::CParameterAccessContext(std::string &strError, argument
38 : base(strError), _pParameterBlackboard(pParameterBlackboard),
44 CParameterAccessContext::CParameterAccessContext(std::string &strError, argument
47 : base(strError), _pParameterBlackboard(pParameterBlackboard), _uiBaseOffset(baseOffset)
51 CParameterAccessContext::CParameterAccessContext(std::string &strError) : base(strError) argument
H A DSelectionCriterionRule.cpp61 bool CSelectionCriterionRule::parse(CRuleParser &ruleParser, string &strError) argument
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; local
173 if (!setMatchesWhen(strMatchesWhen, strError)) {
217 setMatchesWhen(const string &strMatchesWhen, string &strError) argument
[all...]
H A DInstanceConfigurableElement.cpp79 bool CInstanceConfigurableElement::map(IMapper &mapper, std::string &strError) argument
85 if (bHasMappingData && !mapper.mapBegin(this, bKeepDiving, strError)) {
102 if (!pInstanceConfigurableChildElement->map(mapper, strError)) {
191 std::string strError; local
193 if (!pSyncer->sync(*parameterAccessContext.getParameterBlackboard(), false, strError)) {
195 parameterAccessContext.setError(strError);
H A DIntegerParameterType.cpp387 string strError; local
388 strError = "Impossible to convert value " + strValue + " for " + getKind();
390 parameterAccessContext.setError(strError);
H A DParameterMgrPlatformConnector.cpp87 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) argument
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
133 setFailureOnFailedSettingsLoad(bool bFail, std::string &strError) argument
161 setValidateSchemasOnStart(bool bValidate, std::string &strError) argument
180 start(string &strError) argument
[all...]
H A DSelectionCriterionType.cpp55 std::string &strError)
63 strError = error.str();
74 strError = error.str();
84 strError = error.str();
54 addValuePair(int iValue, const std::string &strValue, std::string &strError) argument
/external/parameter-framework/upstream/remote-process/
H A Dmain.cpp45 string strError; local
47 if (requestMessage.serialize(Socket(socket), true, strError) != CRequestMessage::success) {
49 cerr << "Unable to send command to target: " << strError << endl;
55 if (answerMessage.serialize(Socket(socket), false, strError) != CRequestMessage::success) {
57 cerr << "Unable to received answer from target: " << strError << endl;
/external/parameter-framework/upstream/skeleton-subsystem/
H A DSkeletonSubsystemObject.cpp78 bool CSkeletonSubsystemObject::accessHW(bool bReceive, string &strError) argument
83 strError = "Unsupported parameter type";
88 return base::accessHW(bReceive, strError);
91 bool CSkeletonSubsystemObject::sendToHW(string & /*strError*/)
107 bool CSkeletonSubsystemObject::receiveFromHW(string & /*strError*/)
/external/parameter-framework/upstream/test/test-platform/
H A Dmain.cpp107 string strError; local
108 if (!CTestPlatform(filePath, portNumber).run(strError)) {
110 cerr << "Test-platform error:" << strError.c_str() << endl;
/external/parameter-framework/upstream/xmlserializer/
H A DXmlSerializingContext.cpp34 CXmlSerializingContext::CXmlSerializingContext(std::string &strError) argument
35 : utility::ErrorContext(strError)
/external/libxml2/win32/wince/
H A Dwincecompat.c13 char *strError[]= {"Error 0","","No such file or directory","","","","","Arg list too long", variable
65 return strError[MAX_STRERROR];
67 return strError[errnum];
/external/parameter-framework/upstream/remote-processor/
H A DRemoteProcessorServer.cpp127 string strError; local
130 res = requestMessage.serialize(Socket(_socket), false, strError);
134 std::cout << "Error while receiving message: " << strError << std::endl;
155 res = answerMessage.serialize(_socket, true, strError);
162 std::cout << "Error while receiving message: " << strError << std::endl;
/external/parameter-framework/upstream/test/test-subsystem/
H A DTESTSubsystemObject.cpp60 bool CTESTSubsystemObject::sendToHW(std::string &strError) argument
68 strError = "Unable to open file: " + _strFilePath;
80 bool CTESTSubsystemObject::receiveFromHW(std::string & /*strError*/)

Completed in 230 milliseconds

12