Home
last modified time | relevance | path

Searched refs:strResult (Results 1 – 25 of 46) sorted by relevance

12

/external/parameter-framework/upstream/test/test-platform/
DTestPlatform.cpp139 const IRemoteCommand &remoteCommand, string &strResult) in createExclusiveSelectionCriterionFromStateList() argument
142 remoteCommand, strResult) in createExclusiveSelectionCriterionFromStateList()
148 const IRemoteCommand &remoteCommand, string &strResult) in createInclusiveSelectionCriterionFromStateList() argument
151 remoteCommand, strResult) in createInclusiveSelectionCriterionFromStateList()
157 const IRemoteCommand &remoteCommand, string &strResult) in createExclusiveSelectionCriterion() argument
161 strtoul(remoteCommand.getArgument(1).c_str(), nullptr, 0), strResult) in createExclusiveSelectionCriterion()
167 const IRemoteCommand &remoteCommand, string &strResult) in createInclusiveSelectionCriterion() argument
171 strtoul(remoteCommand.getArgument(1).c_str(), nullptr, 0), strResult) in createInclusiveSelectionCriterion()
177 const IRemoteCommand & /*remoteCommand*/, string &strResult) in startParameterMgr() argument
179 return mParameterMgrPlatformConnector.start(strResult) in startParameterMgr()
[all …]
DTestPlatform.h58 const IRemoteCommand &remoteCommand, std::string &strResult);
60 const IRemoteCommand &remoteCommand, std::string &strResult);
63 std::string &strResult);
65 std::string &strResult);
79 CommandReturn setCriterionState(const IRemoteCommand &remoteCommand, std::string &strResult);
86 CommandReturn startParameterMgr(const IRemoteCommand &remoteCommand, std::string &strResult);
95 CommandReturn applyConfigurations(const IRemoteCommand &remoteCommand, std::string &strResult);
103 CommandReturn exit(const IRemoteCommand &remoteCommand, std::string &strResult);
117 CommandReturn setter(const IRemoteCommand &remoteCommand, std::string &strResult);
133 CommandReturn getter(const IRemoteCommand &remoteCommand, std::string &strResult);
[all …]
/external/parameter-framework/upstream/parameter/
DParameterMgr.h263 std::string &strResult);
265 std::string &strResult);
300 std::string &strResult);
388 std::string &strResult) const;
409 const IRemoteCommand &remoteCommand, std::string &strResult);
424 std::string &strResult);
427 std::string &strResult);
430 std::string &strResult);
432 std::string &strResult);
435 std::string &strResult);
[all …]
DParameterMgr.cpp862 const IRemoteCommand & /*command*/, string &strResult) in versionCommandProcess() argument
865 strResult = getVersion(); in versionCommandProcess()
872 const IRemoteCommand & /*command*/, string &strResult) in statusCommandProcess() argument
879 utility::appendTitle(strResult, "General:"); in statusCommandProcess()
881 strResult += "System Class: "; in statusCommandProcess()
882 strResult += pSystemClass->getName(); in statusCommandProcess()
883 strResult += "\n"; in statusCommandProcess()
886 strResult += "Tuning Mode: "; in statusCommandProcess()
887 strResult += tuningModeOn() ? "on" : "off"; in statusCommandProcess()
888 strResult += "\n"; in statusCommandProcess()
[all …]
DLinearParameterAdaptation.cpp45 void CLinearParameterAdaptation::showProperties(string &strResult) const in showProperties()
47 base::showProperties(strResult); in showProperties()
50 strResult += " - SlopeNumerator: "; in showProperties()
51 strResult += std::to_string(_dSlopeNumerator); in showProperties()
52 strResult += "\n"; in showProperties()
55 strResult += " - SlopeDenominator: "; in showProperties()
56 strResult += std::to_string(_dSlopeDenominator); in showProperties()
57 strResult += "\n"; in showProperties()
DLogarithmicParameterAdaptation.cpp46 void CLogarithmicParameterAdaptation::showProperties(std::string &strResult) const in showProperties()
48 base::showProperties(strResult); in showProperties()
50 strResult += " - LogarithmBase: "; in showProperties()
51 strResult += std::to_string(_dLogarithmBase); in showProperties()
52 strResult += "\n"; in showProperties()
53 strResult += " - FloorValue: "; in showProperties()
54 strResult += std::to_string(_dFloorValue); in showProperties()
55 strResult += "\n"; in showProperties()
DConfigurableDomains.cpp224 bool CConfigurableDomains::listConfigurations(const string &strDomain, string &strResult) const in listConfigurations()
226 const CConfigurableDomain *pConfigurableDomain = findConfigurableDomain(strDomain, strResult); in listConfigurations()
233 pConfigurableDomain->listChildren(strResult); in listConfigurations()
285 bool CConfigurableDomains::listDomainElements(const string &strDomain, string &strResult) const in listDomainElements()
288 const CConfigurableDomain *pConfigurableDomain = findConfigurableDomain(strDomain, strResult); in listDomainElements()
295 pConfigurableDomain->listAssociatedToElements(strResult); in listDomainElements()
318 void CConfigurableDomains::listAssociatedElements(string &strResult) const in listAssociatedElements()
336 strResult += pConfigurableElement->getPath() + " [" + strAssociatedDomainList + "]\n"; in listAssociatedElements()
340 void CConfigurableDomains::listConflictingElements(string &strResult) const in listConflictingElements()
360 strResult += pConfigurableElement->getPath() + " contained in multiple domains: " + in listConflictingElements()
[all …]
DBitParameterType.cpp53 void CBitParameterType::showProperties(string &strResult) const in showProperties()
55 base::showProperties(strResult); in showProperties()
58 strResult += "Bit pos: "; in showProperties()
59 strResult += std::to_string(_bitPos); in showProperties()
60 strResult += "\n"; in showProperties()
63 strResult += "Bit size: "; in showProperties()
64 strResult += std::to_string(_uiBitSize); in showProperties()
65 strResult += "\n"; in showProperties()
68 strResult += "Max: "; in showProperties()
69 strResult += std::to_string(_uiMax); in showProperties()
[all …]
DParameterAdaptation.cpp52 void CParameterAdaptation::showProperties(string &strResult) const in showProperties()
55 strResult += " - Type: "; in showProperties()
56 strResult += getName(); in showProperties()
57 strResult += "\n"; in showProperties()
60 strResult += " - Offset: "; in showProperties()
61 strResult += std::to_string(_iOffset); in showProperties()
62 strResult += "\n"; in showProperties()
DStringParameterType.cpp49 void CStringParameterType::showProperties(string &strResult) const in showProperties()
51 base::showProperties(strResult); in showProperties()
54 strResult += "Max length: "; in showProperties()
55 strResult += std::to_string(_maxLength); in showProperties()
56 strResult += "\n"; in showProperties()
DConfigurableDomains.h81 bool listDomainElements(const std::string &strDomain, std::string &strResult) const;
93 void listAssociatedElements(std::string &strResult) const;
94 void listConflictingElements(std::string &strResult) const;
95 void listDomains(std::string &strResult) const;
97 bool listConfigurations(const std::string &strDomain, std::string &strResult) const;
124 std::string &strResult) const;
132 std::string &strResult) const;
135 void listLastAppliedConfigurations(std::string &strResult) const;
DEnumParameterType.cpp56 void CEnumParameterType::showProperties(string &strResult) const in showProperties()
58 base::showProperties(strResult); in showProperties()
60 strResult += "Value Pairs:\n"; in showProperties()
70 strResult += "\tLiteral: \""; in showProperties()
71 strResult += pValuePair->getName(); in showProperties()
72 strResult += "\", Numerical: "; in showProperties()
73 strResult += pValuePair->getNumericalAsString(); in showProperties()
74 strResult += "\n"; in showProperties()
DConfigurableElement.cpp309 void CConfigurableElement::showProperties(std::string &strResult) const in showProperties()
311 base::showProperties(strResult); in showProperties()
313 strResult += "Total size: " + getFootprintAsString() + "\n"; in showProperties()
457 void CConfigurableElement::listBelongingDomains(std::string &strResult, bool bVertical) const in listBelongingDomains() argument
465 listDomains(configurableDomainList, strResult, bVertical); in listBelongingDomains()
469 void CConfigurableElement::listRogueElements(std::string &strResult) const in listRogueElements()
486 strResult += pConfigurableElement->getPath() + "\n"; in listRogueElements()
549 void CConfigurableElement::listAssociatedDomains(std::string &strResult, bool bVertical) const in listAssociatedDomains() argument
552 listDomains(_configurableDomainList, strResult, bVertical); in listAssociatedDomains()
566 const std::list<const CConfigurableDomain *> &configurableDomainList, std::string &strResult, in listDomains() argument
[all …]
DElement.cpp124 void CElement::showProperties(string &strResult) const in showProperties()
126 strResult += "Kind: " + getKind() + "\n"; in showProperties()
127 showDescriptionProperty(strResult); in showProperties()
130 void CElement::showDescriptionProperty(std::string &strResult) const in showDescriptionProperty()
133 strResult += gDescriptionPropertyName + ": " + getDescription() + "\n"; in showDescriptionProperty()
345 string strResult; in listQualifiedPaths() local
350 strResult = getQualifiedPath() + "\n"; in listQualifiedPaths()
357 strResult += pChild->listQualifiedPaths(bDive, level + 1); in listQualifiedPaths()
360 return strResult; in listQualifiedPaths()
DFixedPointParameterType.cpp57 void CFixedPointParameterType::showProperties(string &strResult) const in showProperties()
59 base::showProperties(strResult); in showProperties()
62 strResult += "Notation: Q"; in showProperties()
63 strResult += std::to_string(_uiIntegral); in showProperties()
64 strResult += "."; in showProperties()
65 strResult += std::to_string(_uiFractional); in showProperties()
66 strResult += "\n"; in showProperties()
DConfigurableElement.h72 void listBelongingDomains(std::string &strResult, bool bVertical = true) const;
81 void listAssociatedDomains(std::string &strResult, bool bVertical = true) const;
85 void listRogueElements(std::string &strResult) const;
146 void showProperties(std::string &strResult) const override;
224 std::string &strResult, bool bVertical) const;
DParameterMgrFullConnector.cpp191 string &strResult) in setSequenceAwareness() argument
193 return _pParameterMgr->setSequenceAwareness(strName, bSequenceAware, strResult); in setSequenceAwareness()
197 string &strResult) in getSequenceAwareness() argument
199 return _pParameterMgr->getSequenceAwareness(strName, bSequenceAware, strResult); in getSequenceAwareness()
241 string &strResult) in getApplicationRule() argument
243 return _pParameterMgr->getApplicationRule(strDomain, strConfiguration, strResult); in getApplicationRule()
DParameterType.cpp109 void CParameterType::showProperties(string &strResult) const in showProperties()
111 base::showProperties(strResult); in showProperties()
115 strResult += gUnitPropertyName + ": " + getUnit() + "\n"; in showProperties()
119 strResult += "Scalar size: " + std::to_string(getSize()) + " byte(s) \n"; in showProperties()
DIntegerParameterType.h273 void showProperties(std::string &strResult) const override in showProperties() argument
275 Base::showProperties(strResult); in showProperties()
282 strResult += stream.str(); in showProperties()
290 strResult += "Adaptation:\n"; in showProperties()
292 pParameterAdaption->showProperties(strResult); in showProperties()
DArrayParameter.cpp61 void CArrayParameter::showProperties(string &strResult) const in showProperties()
63 base::showProperties(strResult); in showProperties()
66 strResult += "Array length: "; in showProperties()
67 strResult += std::to_string(getArrayLength()); in showProperties()
68 strResult += "\n"; in showProperties()
DInstanceConfigurableElement.cpp118 void CInstanceConfigurableElement::showProperties(std::string &strResult) const in showProperties()
120 base::showProperties(strResult); in showProperties()
123 _pTypeElement->showProperties(strResult); in showProperties()
DConfigurableDomain.cpp687 void CConfigurableDomain::listAssociatedToElements(string &strResult) const in listAssociatedToElements()
696 strResult += pConfigurableElement->getPath() + "\n"; in listAssociatedToElements()
777 string &strResult) const in getElementSequence()
781 findConfiguration(strConfiguration, strResult); in getElementSequence()
789 pDomainConfiguration->getElementSequence(strResult); in getElementSequence()
828 string &strResult) const in getApplicationRule()
832 findConfiguration(strConfiguration, strResult); in getApplicationRule()
840 strResult = pDomainConfiguration->getApplicationRule(); in getApplicationRule()
/external/parameter-framework/upstream/remote-processor/
DRemoteCommandHandlerTemplate.h56 const IRemoteCommand &remoteCommand, std::string &strResult);
80 std::string &strResult) const in parse() argument
85 strResult = std::string("Not enough arguments supplied\nUsage:\n") + usage(); in parse()
90 switch ((pCommandParser->*_pfnParser)(remoteCommand, strResult)) { in parse()
92 strResult = "Done"; in parse()
97 strResult = usage(); in parse()
150 bool remoteCommandProcess(const IRemoteCommand &remoteCommand, std::string &strResult) override in remoteCommandProcess() argument
159 strResult = "Command not found!\nUse \"help\" to show available commands"; in remoteCommandProcess()
166 helpCommandProcess(strResult); in remoteCommandProcess()
171 return pRemoteCommandParserItem->parse(_pCommandParser, remoteCommand, strResult); in remoteCommandProcess()
[all …]
DRemoteProcessorServer.cpp204 string strResult; in handleNewConnection() local
206 bSuccess = commandHandler.remoteCommandProcess(requestMessage, strResult); in handleNewConnection()
210 CAnswerMessage answerMessage(strResult, bSuccess); in handleNewConnection()
/external/parameter-framework/upstream/bindings/python/
Dpfw.i136 %apply std::string &OUTPUT { std::string& strResult }
137 …bool setSequenceAwareness(const std::string& strName, bool bSequenceAware, std::string& strResult);
138 …ool getSequenceAwareness(const std::string& strName, bool& bSequenceAware, std::string& strResult);
139 %clear std::string& strResult;
155 %apply std::string &OUTPUT { std::string& strResult }
156 …ionRule(const std::string& strDomain, const std::string& strConfiguration, std::string& strResult);
157 %clear std::string& strResult;

12