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

12 3

  /external/parameter-framework/upstream/bindings/python/
pfw.i 56 // Tells swig that 'std::string& strError' must be treated as output parameters
58 %apply std::string &OUTPUT { std::string& strError };
79 bool start(std::string& strError);
94 bool setFailureOnMissingSubsystem(bool bFail, std::string& strError);
97 bool setFailureOnFailedSettingsLoad(bool bFail, std::string& strError);
103 bool setValidateSchemasOnStart(bool bValidate, std::string &strError);
107 bool setTuningMode(bool bOn, std::string& strError);
119 bool setAutoSync(bool bAutoSyncOn, std::string& strError);
121 bool sync(std::string& strError);
125 bool accessParameterValue(const std::string& strPath, std::string& strValue, bool bSet, std::string& strError);
    [all...]
  /external/parameter-framework/upstream/parameter/
ParameterAccessContext.cpp 34 CParameterAccessContext::CParameterAccessContext(std::string &strError,
38 : base(strError), _pParameterBlackboard(pParameterBlackboard),
44 CParameterAccessContext::CParameterAccessContext(std::string &strError,
47 : base(strError), _pParameterBlackboard(pParameterBlackboard), _uiBaseOffset(baseOffset)
51 CParameterAccessContext::CParameterAccessContext(std::string &strError) : base(strError)
ParameterAccessContext.h 41 CParameterAccessContext(std::string &strError, CParameterBlackboard *pParameterBlackboard,
44 CParameterAccessContext(std::string &strError, CParameterBlackboard *pParameterBlackboard,
46 CParameterAccessContext(std::string &strError);
RuleParser.h 58 bool parse(CCompoundRule *pParentRule, std::string &strError);
61 bool iterate(std::string &strError);
64 bool next(std::string &strNext, std::string &strError);
SyncerSet.cpp 60 std::string strError;
69 if (!pSyncer->sync(parameterBlackboard, bBack, strError)) {
73 errors->push_back(strError);
ConfigurableDomain.h 64 const CParameterBlackboard *pMainBlackboard, std::string &strError);
65 bool deleteConfiguration(const std::string &strName, std::string &strError);
67 std::string &strError);
82 std::string &strError);
85 std::string &strError);
90 std::string &strError);
91 bool clearApplicationRule(const std::string &strConfiguration, std::string &strError);
116 std::string &strError);
121 size_t &baseOffset, bool &bIsLastApplied, std::string &strError) const;
271 std::string &strError);
    [all...]
PathNavigator.cpp 53 bool CPathNavigator::navigateThrough(const std::string &strItemName, std::string &strError)
57 strError = "Path not well formed: " + getCurrentPath();
66 strError =
74 strError = "Path not found: " + getCurrentPath() + ", expected: " + strItemName +
SubsystemObject.h 81 virtual bool sendToHW(std::string &strError);
82 virtual bool receiveFromHW(std::string &strError);
84 virtual bool accessHW(bool bReceive, std::string &strError);
104 std::string &strError) override final;
VirtualSubsystem.h 63 bool &bKeepDiving, std::string &strError);
XmlElementSerializingContext.h 41 CXmlElementSerializingContext(std::string &strError);
XmlParameterSerializingContext.h 42 CXmlParameterSerializingContext(CParameterAccessContext &context, std::string &strError);
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...]
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);
ParameterMgr.h 92 * @param[out] strError is a std::string describing the error if an error occurred
97 bool load(std::string &strError);
120 std::string &strError) const;
125 * @param[out] strError Error message
128 * On error, NULL is returned and the error is explained in strError.
130 CConfigurableElement *getConfigurableElement(const std::string &strPath, std::string &strError);
132 CParameterHandle *createParameterHandle(const std::string &strPath, std::string &strError);
218 * @param[out] strError human readable error
221 * If false, strError is set with the associated human readable error.
223 bool setTuningMode(bool bOn, std::string &strError);
    [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...]
SelectionCriterionRule.h 59 virtual bool parse(CRuleParser &ruleParser, std::string &strError);
82 bool setMatchesWhen(const std::string &strMatchesWhen, std::string &strError);
CompoundRule.h 40 virtual bool parse(CRuleParser &ruleParser, std::string &strError);
PathNavigator.h 45 bool navigateThrough(const std::string &strItemName, std::string &strError);
  /external/parameter-framework/upstream/parameter/include/
ParameterMgrPlatformConnector.h 83 bool start(std::string &strError);
95 std::string &strError) const;
129 * @param[out] strError a string describing the error if the function failed,
134 bool setFailureOnMissingSubsystem(bool bFail, std::string &strError);
148 * @param[out] strError On error: an human readable error message
153 bool setFailureOnFailedSettingsLoad(bool bFail, std::string &strError);
177 * @param[out] strError On error: an human readable error message
182 bool setValidateSchemasOnStart(bool bValidate, std::string &strError);
SelectionCriterionTypeInterface.h 42 * @param[out] strError string containing error information we can provide to client
45 virtual bool addValuePair(int iValue, const std::string &strValue, std::string &strError) = 0;
  /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/test/test-subsystem/
TESTSubsystemObject.h 46 virtual bool sendToHW(std::string &strError);
47 virtual bool receiveFromHW(std::string &strError);
  /external/parameter-framework/upstream/xmlserializer/
XmlSerializingContext.h 41 * Provided with an initial empty buffer (strError), an instance of this class
46 * Ie. the provided buffer (strError) is in an undefined state between
52 CXmlSerializingContext(std::string &strError);
XmlSerializingContext.cpp 34 CXmlSerializingContext::CXmlSerializingContext(std::string &strError)
35 : utility::ErrorContext(strError)

Completed in 712 milliseconds

12 3