Home | History | Annotate | Download | only in python

Lines Matching refs:string

51 // We need to tell SWIG that std::vector<std::string> is a vector of strings
53 %template(StringVector) vector<string>;
56 // Tells swig that 'std::string& strError' must be treated as output parameters
58 %apply std::string &OUTPUT { std::string& strError };
62 // that can return an error string.
77 CParameterMgrFullConnector(const std::string& strConfigurationFilePath);
79 bool start(std::string& strError);
84 ISelectionCriterionInterface* createSelectionCriterion(const std::string& strName,
86 ISelectionCriterionInterface* getSelectionCriterion(const std::string& strName);
94 bool setFailureOnMissingSubsystem(bool bFail, std::string& strError);
97 bool setFailureOnFailedSettingsLoad(bool bFail, std::string& strError);
100 void setSchemaUri(const std::string& schemaUri);
101 const std::string& getSchemaUri() const;
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);
124 %apply std::string &INOUT { std::string& strValue };
125 bool accessParameterValue(const std::string& strPath, std::string& strValue, bool bSet, std::string& strError);
126 bool accessConfigurationValue(const std::string &strDomain, const std::string &strConfiguration, const std::string& strPath, std::string& strValue, bool bSet, std::string& strError);
127 %clear std::string& strValue;
129 bool getParameterMapping(const std::string& strPath, std::string& strValue) const;
132 bool createDomain(const std::string& strName, std::string& strError);
133 bool deleteDomain(const std::string& strName, std::string& strError);
134 bool renameDomain(const std::string& strName, const std::string& strNewName, std::string& strError);
135 bool deleteAllDomains(std::string& strError);
136 %apply std::string &OUTPUT { std::string& strResult }
137 bool setSequenceAwareness(const std::string& strName, bool bSequenceAware, std::string& strResult);
138 bool getSequenceAwareness(const std::string& strName, bool& bSequenceAware, std::string& strResult);
139 %clear std::string& strResult;
140 bool createConfiguration(const std::string& strDomain, const std::string& strConfiguration, std::string& strError);
141 bool deleteConfiguration(const std::string& strDomain, const std::string& strConfiguration, std::string& strError);
142 bool renameConfiguration(const std::string& strDomain, const std::string& strConfiguration, const std::string& strNewConfiguration, std::string& strError);
145 bool restoreConfiguration(const std::string& strDomain, const std::string& strConfiguration, std::list<std::string>& strError);
146 bool saveConfiguration(const std::string& strDomain, const std::string& strConfiguration, std::string& strError);
149 bool addConfigurableElementToDomain(const std::string& strDomain, const std::string& strConfigurableElementPath, std::string& strError);
150 bool removeConfigurableElementFromDomain(const std::string& strDomain, const std::string& strConfigurableElementPath, std::string& strError);
151 bool split(const std::string& strDomain, const std::string& strConfigurableElementPath, std::string& strError);
152 bool setElementSequence(const std::string& strDomain, const std::string& strConfiguration, const std::vector<std::string>& astrNewElementSequence, std::string& strError);
154 bool setApplicationRule(const std::string& strDomain, const std::string& strConfiguration, const std::string& strApplicationRule, std::string& strError);
155 %apply std::string &OUTPUT { std::string& strResult }
156 bool getApplicationRule(const std::string& strDomain, const std::string& strConfiguration, std::string& strResult);
157 %clear std::string& strResult;
158 bool clearApplicationRule(const std::string& strDomain, const std::string& strConfiguration, std::string& strError);
160 bool importDomainsXml(const std::string& strXmlSource, bool bWithSettings, bool bFromFile,
161 std::string& strError);
162 bool importSingleDomainXml(const std::string& strXmlSource, bool bOverwrite,
163 std::string& strError);
164 bool importSingleDomainXml(const std::string& xmlSource, bool overwrite, bool withSettings,
165 bool fromFile, std::string& strError);
169 %apply std::string &INOUT { std::string& strXmlDest };
170 bool exportDomainsXml(std::string& strXmlDest, bool bWithSettings, bool bToFile,
171 std::string& strError) const;
173 bool exportSingleDomainXml(std::string& strXmlDest, const std::string& strDomainName, bool bWithSettings,
174 bool bToFile, std::string& strError) const;
175 %clear std::string& strXmlDest;
193 virtual void info(const std::string& log) = 0;
194 virtual void warning(const std::string& log) = 0;
209 virtual bool addValuePair(int iValue, const std::string& strValue, std::string& strError) = 0;
210 virtual bool getNumericalValue(const std::string& strValue, int& iValue) const = 0;
211 virtual bool getLiteralValue(int iValue, std::string& strValue) const = 0;
213 virtual std::string getFormattedState(int iValue) const = 0;
228 virtual std::string getCriterionName() const = 0;