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

1 23

  /external/parameter-framework/upstream/parameter/
CompoundRule.cpp 60 bool CCompoundRule::parse(CRuleParser &ruleParser, string &strError)
75 strError = "Unknown compound rule type: ";
76 strError += ruleParser.getType();
Subsystem.h 117 bool mapSubsystemElements(std::string &strError);
128 * @param[out] strError String filled with an human readable error on error,
134 bool &bKeepDiving, std::string &strError);
208 * @param[out] strError The formated error std::string
213 CMappingContext &context, std::string &strError) const;
224 * @param[out] strError String filled with an human readable error on error,
231 std::string &strError);
SelectionCriterionType.cpp 55 std::string &strError)
63 strError = error.str();
74 strError = error.str();
84 strError = error.str();
SelectionCriterionType.h 45 virtual bool addValuePair(int iValue, const std::string &strValue, std::string &strError);
Element.h 61 bool rename(const std::string &strName, std::string &strError);
66 virtual bool init(std::string &strError);
InstanceConfigurableElement.h 84 bool map(IMapper &mapper, std::string &strError);
SystemClass.h 55 * @param[out] strError is filled with new line separated errors if the function returns false,
63 bool loadSubsystems(std::string &strError, const CSubsystemPlugins *pSubsystemPlugins,
SystemClass.cpp 95 bool CSystemClass::loadSubsystems(string &strError, const CSubsystemPlugins *pSubsystemPlugins,
114 // Fill strError for caller, he has to decide if there is a problem depending on
116 strError = utility::asString(errors);
DomainConfiguration.h 77 std::string &strError);
Element.cpp 69 bool CElement::init(string &strError)
74 if (!child->init(strError)) {
241 bool CElement::rename(const string &strName, string &strError)
251 strError = "Name conflicts with brother element";
IntegerParameterType.cpp 387 string strError;
388 strError = "Impossible to convert value " + strValue + " for " + getKind();
390 parameterAccessContext.setError(strError);
DomainConfiguration.cpp 272 const CSelectionCriteriaDefinition *pSelectionCriteriaDefinition, string &strError)
278 if (!ruleParser.parse(NULL, strError)) {
  /external/parameter-framework/upstream/remote-processor/
Message.cpp 130 CMessage::Result CMessage::serialize(Socket &&socket, bool bOut, string &strError)
162 strError += string("Size write failed: ") + ec.message();
169 strError += string("Msg write failed: ") + ec.message();
176 strError = string("Data write failed: ") + ec.message();
185 strError = string("Checksum write failed: ") + ec.message();
195 strError = string("Sync read failed: ") + ec.message();
205 strError = "Sync word incorrect";
213 strError = string("Size read failed: ") + ec.message();
219 strError = string("Msg id read failed: ") + ec.message();
230 strError = string("Data read failed: ") + ec.message()
    [all...]
RemoteProcessorServer.cpp 127 string strError;
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;
Message.h 67 * @param[out] strError on failure, a string explaining the error,
74 Result serialize(Socket &&socket, bool bOut, std::string &strError);
  /external/parameter-framework/upstream/skeleton-subsystem/
SkeletonSubsystemObject.cpp 78 bool CSkeletonSubsystemObject::accessHW(bool bReceive, string &strError)
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/
main.cpp 107 string strError;
108 if (!CTestPlatform(filePath, portNumber).run(strError)) {
110 cerr << "Test-platform error:" << strError.c_str() << endl;
TestPlatform.cpp 59 bool CTestPlatform::run(std::string &strError)
62 if (!mRemoteProcessorServer.start(strError)) {
64 strError = "TestPlatform: Unable to start remote processor server: " + strError;
TestPlatform.h 52 bool run(std::string &strError);
  /external/parameter-framework/upstream/test/test-subsystem/
TESTSubsystemObject.cpp 60 bool CTESTSubsystemObject::sendToHW(std::string &strError)
68 strError = "Unable to open file: " + _strFilePath;
80 bool CTESTSubsystemObject::receiveFromHW(std::string & /*strError*/)

Completed in 151 milliseconds

1 23