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

12

/external/parameter-framework/parameter/
H A DConfigurationAccessContext.cpp36 CConfigurationAccessContext::CConfigurationAccessContext(string& strError, bool bSerializeOut) : argument
37 base(strError),
H A DErrorContext.cpp32 CErrorContext::CErrorContext(std::string& strError) : _strError(strError) argument
37 void CErrorContext::setError(const std::string& strError) argument
39 _strError = strError;
H A DVirtualSyncer.cpp41 bool CVirtualSyncer::sync(CParameterBlackboard& parameterBlackboard, bool bBack, string& strError) argument
46 CParameterAccessContext parameterAccessContext(strError, &parameterBlackboard, false);
H A DXmlDomainSerializingContext.h39 CXmlDomainSerializingContext(std::string& strError, bool bWithSettings): argument
40 base(strError), _bWithSettings(bWithSettings) {}
H A DXmlParameterSerializingContext.cpp36 CXmlParameterSerializingContext::CXmlParameterSerializingContext(string& strError) : base(strError) argument
H A DElementLocator.cpp40 bool CElementLocator::locate(const string& strPath, CElement** ppElement, string& strError) argument
46 strError = "Invalid Path";
58 strError = "Path not found: " + strPath;
68 strError = "Path not found: " + strPath;
78 strError = "Path not found: " + strPath;
H A DPathNavigator.cpp53 bool CPathNavigator::navigateThrough(const std::string& strItemName, std::string& strError) argument
57 strError = "Path not well formed: " + getCurrentPath();
66 strError = "Path not complete: " + getCurrentPath() +
74 strError = "Path not found: " + getCurrentPath() +
H A DSyncerSet.cpp63 std::string strError; local
72 if (!pSyncer->sync(parameterBlackboard, bBack, strError)) {
76 plstrError->push_back(strError);
H A DVirtualSubsystem.cpp54 bool CVirtualSubsystem::mapBegin(CInstanceConfigurableElement* pInstanceConfigurableElement, bool& bKeepDiving, string& strError) argument
57 (void)strError;
H A DXmlDomainExportContext.h38 CXmlDomainExportContext(std::string& strError, argument
42 base(strError, bWithSettings),
H A DXmlDomainImportContext.h41 CXmlDomainImportContext(std::string& strError, bool bWithSettings, CSystemClass& systemClass): argument
42 base(strError, bWithSettings), _systemClass(systemClass), _bAutoValidationRequired(true) {}
H A DXmlElementSerializingContext.cpp37 CXmlElementSerializingContext::CXmlElementSerializingContext(string& strError) : base(strError), _pElementLibrary(NULL) argument
H A DRuleParser.cpp63 bool CRuleParser::parse(CCompoundRule* pParentRule, string& strError) argument
67 if (!iterate(strError)) {
78 if (!pCompoundRule->parse(*this, strError)) {
95 if (!parse(pCompoundRule, strError)) {
112 if (!pCriterionRule->parse(*this, strError)) {
133 strError = "Syntax error, no rule found";
149 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 DBinaryStream.cpp57 bool CBinaryStream::open(string& strError) argument
65 strError = string("Failed to ") + (_bOut ? "write" : "read") + "-open";
78 strError = "Unexpected file size";
99 strError = "Integrity checks failed";
H A DCompoundRule.cpp69 bool CCompoundRule::parse(CRuleParser& ruleParser, string& strError) argument
86 strError = "Unknown compound rule type: ";
87 strError += ruleParser.getType();
H A DParameterAccessContext.cpp34 CParameterAccessContext::CParameterAccessContext(std::string& strError, argument
39 : base(strError), _pParameterBlackboard(pParameterBlackboard),
45 CParameterAccessContext::CParameterAccessContext(std::string& strError, argument
49 : base(strError), _pParameterBlackboard(pParameterBlackboard), _bValueSpaceIsRaw(false),
55 CParameterAccessContext::CParameterAccessContext(std::string& strError) argument
56 : base(strError), _pParameterBlackboard(NULL), _bValueSpaceIsRaw(false),
H A DSelectionCriterionRule.cpp70 bool CSelectionCriterionRule::parse(CRuleParser& ruleParser, string& strError) argument
78 strError = "Couldn't find selection criterion " + ruleParser.getType();
86 if (!ruleParser.next(strMatchesWhen, strError)) {
93 if (!ruleParser.next(strValue, strError)) {
99 if (!setMatchesWhen(strMatchesWhen, strError)) {
101 strError = "Verb error: " + strError;
109 strError = "Value error: \"" + strValue + "\" is not part of criterion \"" +
174 string strError; local
176 if (!setMatchesWhen(strMatchesWhen, strError)) {
219 setMatchesWhen(const string& strMatchesWhen, string& strError) argument
[all...]
/external/parameter-framework/xmlserializer/
H A DXmlSerializingContext.cpp32 CXmlSerializingContext::CXmlSerializingContext(std::string& strError) : _strError(strError) argument
37 void CXmlSerializingContext::setError(const std::string& strError) argument
39 _strError = strError;
/external/parameter-framework/remote-processor/
H A DConnectionSocket.cpp47 bool CConnectionSocket::connect(const string& strRemote, uint16_t uiPort, string& strError) argument
57 strError = "Target not found :-(";
72 strError = "Unable to connnect to target :-(";
H A DListeningSocket.cpp56 bool CListeningSocket::listen(uint16_t uiPort, string &strError) argument
68 strError = "Could not bind socket to port " + oss.str() + ": " + strerror(errno);
76 strError = "Could not listen to port " + oss.str() + ": " + strerror(errno);
H A DMessage.cpp126 CMessage::Result CMessage::serialize(CSocket* pSocket, bool bOut, string& strError) argument
155 strError += string("Size write failed: ") + strerror(errno);
162 strError += string("Msg write failed: ") + strerror(errno);
169 strError = string("Data write failed: ") + strerror(errno);
178 strError = string("Checksum write failed: ") + strerror(errno);
188 strError = string("Sync read failed: ") + strerror(errno);
198 strError = "Sync word incorrect";
207 strError = string("Size read failed: ") + strerror(errno);
214 strError = string("Msg id read failed: ") + strerror(errno);
226 strError
[all...]
/external/parameter-framework/skeleton-subsystem/
H A DSkeletonSubsystemObject.cpp83 bool CSkeletonSubsystemObject::accessHW(bool bReceive, string& strError) argument
88 strError = "Unsupported parameter type";
93 return base::accessHW(bReceive, strError);
96 bool CSkeletonSubsystemObject::sendToHW(string& strError) argument
98 (void) strError;
116 bool CSkeletonSubsystemObject::receiveFromHW(string& strError) argument
118 (void) 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/test/test-subsystem/
H A DTESTSubsystemObject.cpp55 bool CTESTSubsystemObject::sendToHW(std::string& strError) argument
63 strError = "Unable to open file: " + _strFilePath;
76 bool CTESTSubsystemObject::receiveFromHW(std::string& strError) argument
78 (void)strError;
/external/parameter-framework/remote-process/
H A Dmain.cpp101 string strError; local
103 if (requestMessage.serialize(&connectionSocket, true, strError)
106 cerr << "Unable to send command to target: " << strError << endl;
112 if (answerMessage.serialize(&connectionSocket, false, strError)
115 cerr << "Unable to received answer from target: " << strError << endl;
160 string strError; local
162 if (!connectionSocket.connect(argv[1], uiPort, strError)) {
164 cerr << strError << endl;

Completed in 193 milliseconds

12