/external/parameter-framework/upstream/parameter/ |
H A D | VirtualSyncer.cpp | 42 bool CVirtualSyncer::sync(CParameterBlackboard ¶meterBlackboard, bool bBack, string &strError) argument 47 CParameterAccessContext parameterAccessContext(strError, ¶meterBlackboard);
|
H A D | XmlDomainSerializingContext.h | 39 CXmlDomainSerializingContext(std::string &strError, bool bWithSettings) argument 40 : base(strError), _bWithSettings(bWithSettings)
|
H A D | ConfigurationAccessContext.cpp | 36 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 D | ElementLocator.cpp | 41 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 D | XmlElementSerializingContext.cpp | 36 CXmlElementSerializingContext::CXmlElementSerializingContext(string &strError) : base(strError) argument
|
H A D | XmlParameterSerializingContext.cpp | 37 string &strError) 38 : base(strError), mAccessContext(context) 36 CXmlParameterSerializingContext(CParameterAccessContext &context, string &strError) argument
|
H A D | PathNavigator.cpp | 53 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 D | SyncerSet.cpp | 60 std::string strError; local 69 if (!pSyncer->sync(parameterBlackboard, bBack, strError)) { 73 errors->push_back(strError);
|
H A D | XmlDomainExportContext.h | 38 CXmlDomainExportContext(std::string &strError, bool bWithSettings = true, argument 40 : base(strError, bWithSettings), _bValueSpaceIsRaw(bValueSpaceIsRaw),
|
H A D | XmlDomainImportContext.h | 41 CXmlDomainImportContext(std::string &strError, bool bWithSettings, CSystemClass &systemClass) argument 42 : base(strError, bWithSettings), _systemClass(systemClass)
|
H A D | RuleParser.cpp | 61 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 D | CompoundRule.cpp | 60 bool CCompoundRule::parse(CRuleParser &ruleParser, string &strError) argument 75 strError = "Unknown compound rule type: "; 76 strError += ruleParser.getType();
|
H A D | ParameterAccessContext.cpp | 34 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 D | SelectionCriterionRule.cpp | 61 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 D | InstanceConfigurableElement.cpp | 79 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 D | IntegerParameterType.cpp | 387 string strError; local 388 strError = "Impossible to convert value " + strValue + " for " + getKind(); 390 parameterAccessContext.setError(strError);
|
H A D | 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) 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 D | SelectionCriterionType.cpp | 55 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 D | main.cpp | 45 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 D | SkeletonSubsystemObject.cpp | 78 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 D | main.cpp | 107 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 D | XmlSerializingContext.cpp | 34 CXmlSerializingContext::CXmlSerializingContext(std::string &strError) argument 35 : utility::ErrorContext(strError)
|
/external/libxml2/win32/wince/ |
H A D | wincecompat.c | 13 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 D | RemoteProcessorServer.cpp | 127 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 D | TESTSubsystemObject.cpp | 60 bool CTESTSubsystemObject::sendToHW(std::string &strError) argument 68 strError = "Unable to open file: " + _strFilePath; 80 bool CTESTSubsystemObject::receiveFromHW(std::string & /*strError*/)
|