HomeSort by relevance Sort by last modified time
    Searched defs:strError (Results 1 - 12 of 12) sorted by null

  /external/parameter-framework/upstream/remote-process/
main.cpp 45 string strError;
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/parameter/
SyncerSet.cpp 60 std::string strError;
69 if (!pSyncer->sync(parameterBlackboard, bBack, strError)) {
73 errors->push_back(strError);
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...]
InstanceConfigurableElement.cpp 79 bool CInstanceConfigurableElement::map(IMapper &mapper, std::string &strError)
85 if (bHasMappingData && !mapper.mapBegin(this, bKeepDiving, strError)) {
102 if (!pInstanceConfigurableChildElement->map(mapper, strError)) {
191 std::string strError;
193 if (!pSyncer->sync(*parameterAccessContext.getParameterBlackboard(), false, strError)) {
195 parameterAccessContext.setError(strError);
IntegerParameterType.cpp 387 string strError;
388 strError = "Impossible to convert value " + strValue + " for " + getKind();
390 parameterAccessContext.setError(strError);
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...]
Subsystem.cpp 146 string strError;
147 if (!mapSubsystemElements(strError)) {
149 serializingContext.setError(strError);
157 bool CSubsystem::mapSubsystemElements(string &strError)
162 handleMappingContext(this, context, strError);
174 if (!pInstanceConfigurableChildElement->map(*this, strError)) {
345 CMappingContext &context, string &strError) const
357 strError = getMappingError(strKey, "Already set", pConfigurableElement);
369 bool &bHasCreatedSubsystemObject, string &strError)
396 strError
    [all...]
ConfigurableDomain.cpp 279 string strError;
282 if (!pathNavigator.navigateThrough(systemClass.getName(), strError)) {
286 " from ConfigurableDomain description " + getName() + " (" + strError + ")");
306 strError = utility::asString(infos);
307 serializingContext.setError(strError);
393 string &strError)
398 strError = "Configurable element " + pConfigurableElement->getPath() +
425 * @param[out] strError Error message
432 bool &bIsLastApplied, string &strError) const
440 strError = "Domain configuration " + strConfiguration + " not found"
    [all...]
ParameterMgr.cpp 357 bool CParameterMgr::load(string &strError)
364 if (!loadFrameworkConfiguration(strError)) {
369 if (!loadSubsystems(strError)) {
375 if (!loadStructure(strError)) {
381 if (!loadSettings(strError)) {
387 if (!init(strError)) {
424 return handleRemoteProcessingInterface(strError);
427 bool CParameterMgr::loadFrameworkConfiguration(string &strError)
432 CXmlElementSerializingContext elementSerializingContext(strError);
455 strError = "Parameter Framework Configuration: couldn't find SubsystemPlugins element"
    [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];
  /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;
  /external/parameter-framework/upstream/remote-processor/
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;

Completed in 402 milliseconds