/external/parameter-framework/parameter/ |
D | ParameterMgr.cpp | 886 …Status CParameterMgr::versionCommandProcess(const IRemoteCommand& remoteCommand, string& strResult) in versionCommandProcess() argument 891 strResult = getVersion(); in versionCommandProcess() 897 …dStatus CParameterMgr::statusCommandProcess(const IRemoteCommand& remoteCommand, string& strResult) in statusCommandProcess() argument 905 CUtility::appendTitle(strResult, "General:"); in statusCommandProcess() 907 strResult += "System Class: "; in statusCommandProcess() 908 strResult += pSystemClass->getName(); in statusCommandProcess() 909 strResult += "\n"; in statusCommandProcess() 912 strResult += "Tuning Mode: "; in statusCommandProcess() 913 strResult += tuningModeOn() ? "on" : "off"; in statusCommandProcess() 914 strResult += "\n"; in statusCommandProcess() [all …]
|
D | ParameterMgr.h | 80 …(CParameterMgr::*RemoteCommandParser)(const IRemoteCommand& remoteCommand, std::string& strResult); 252 std::string& strResult); 254 std::string& strResult); 272 std::string& strResult); 356 std::string& strResult) const; 378 …::CommandStatus versionCommandProcess(const IRemoteCommand& remoteCommand, std::string& strResult); 380 …r::CommandStatus statusCommandProcess(const IRemoteCommand& remoteCommand, std::string& strResult); 382 …andStatus setTuningModeCommandProcess(const IRemoteCommand& remoteCommand, std::string& strResult); 383 …andStatus getTuningModeCommandProcess(const IRemoteCommand& remoteCommand, std::string& strResult); 385 …andStatus setValueSpaceCommandProcess(const IRemoteCommand& remoteCommand, std::string& strResult); [all …]
|
D | ConfigurableDomains.cpp | 228 bool CConfigurableDomains::listConfigurations(const string& strDomain, string& strResult) const in listConfigurations() 230 const CConfigurableDomain* pConfigurableDomain = findConfigurableDomain(strDomain, strResult); in listConfigurations() 237 pConfigurableDomain->listChildren(strResult); in listConfigurations() 281 bool CConfigurableDomains::listDomainElements(const string& strDomain, string& strResult) const in listDomainElements() 284 const CConfigurableDomain* pConfigurableDomain = findConfigurableDomain(strDomain, strResult); in listDomainElements() 291 pConfigurableDomain->listAssociatedToElements(strResult); in listDomainElements() 311 void CConfigurableDomains::listAssociatedElements(string& strResult) const in listAssociatedElements() 313 strResult = "\n"; in listAssociatedElements() 331 strResult += pConfigurableElement->getPath() + " [" + strAssociatedDomainList + "]\n"; in listAssociatedElements() 335 void CConfigurableDomains::listConflictingElements(string& strResult) const in listConflictingElements() [all …]
|
D | LogarithmicParameterAdaptation.cpp | 44 void CLogarithmicParameterAdaptation::showProperties(std::string& strResult) const in showProperties() 46 base::showProperties(strResult); in showProperties() 48 strResult += " - LogarithmBase: "; in showProperties() 49 strResult += CUtility::toString(_dLogarithmBase); in showProperties() 50 strResult += "\n"; in showProperties() 51 strResult += " - FloorValue: "; in showProperties() 52 strResult += CUtility::toString(_dFloorValue); in showProperties() 53 strResult += "\n"; in showProperties()
|
D | LinearParameterAdaptation.cpp | 47 void CLinearParameterAdaptation::showProperties(string& strResult) const in showProperties() 49 base::showProperties(strResult); in showProperties() 52 strResult += " - SlopeNumerator: "; in showProperties() 53 strResult += CUtility::toString(_dSlopeNumerator); in showProperties() 54 strResult += "\n"; in showProperties() 57 strResult += " - SlopeDenominator: "; in showProperties() 58 strResult += CUtility::toString(_dSlopeDenominator); in showProperties() 59 strResult += "\n"; in showProperties()
|
D | ParameterAdaptation.cpp | 53 void CParameterAdaptation::showProperties(string& strResult) const in showProperties() 56 strResult += " - Type: "; in showProperties() 57 strResult += getName(); in showProperties() 58 strResult += "\n"; in showProperties() 61 strResult += " - Offset: "; in showProperties() 62 strResult += CUtility::toString(_iOffset); in showProperties() 63 strResult += "\n"; in showProperties()
|
D | BitParameterType.cpp | 53 void CBitParameterType::showProperties(string& strResult) const in showProperties() 55 base::showProperties(strResult); in showProperties() 58 strResult += "Bit pos: "; in showProperties() 59 strResult += CUtility::toString(_uiBitPos); in showProperties() 60 strResult += "\n"; in showProperties() 63 strResult += "Bit size: "; in showProperties() 64 strResult += CUtility::toString(_uiBitSize); in showProperties() 65 strResult += "\n"; in showProperties() 68 strResult += "Max: "; in showProperties() 69 strResult += CUtility::toString(_uiMax); in showProperties() [all …]
|
D | ConfigurableElement.cpp | 190 void CConfigurableElement::showProperties(std::string& strResult) const in showProperties() 192 base::showProperties(strResult); in showProperties() 194 strResult += "Total size: " + getFootprintAsString() + "\n"; in showProperties() 320 void CConfigurableElement::listBelongingDomains(std::string& strResult, bool bVertical) const in listBelongingDomains() argument 328 listDomains(configurableDomainList, strResult, bVertical); in listBelongingDomains() 332 void CConfigurableElement::listRogueElements(std::string& strResult) const in listRogueElements() 334 strResult = "\n"; in listRogueElements() 350 strResult += pConfigurableElement->getPath() + "\n"; in listRogueElements() 399 void CConfigurableElement::listAssociatedDomains(std::string& strResult, bool bVertical) const in listAssociatedDomains() argument 402 listDomains(_configurableDomainList, strResult, bVertical); in listAssociatedDomains() [all …]
|
D | IntegerParameterType.cpp | 62 void CIntegerParameterType::showProperties(string& strResult) const in showProperties() 64 base::showProperties(strResult); in showProperties() 67 strResult += "Signed: "; in showProperties() 68 strResult += _bSigned ? "yes" : "no"; in showProperties() 69 strResult += "\n"; in showProperties() 72 strResult += "Min: "; in showProperties() 73 strResult += _bSigned ? CUtility::toString((int32_t)_uiMin) : CUtility::toString(_uiMin); in showProperties() 74 strResult += "\n"; in showProperties() 77 strResult += "Max: "; in showProperties() 78 strResult += _bSigned ? CUtility::toString((int32_t)_uiMax) : CUtility::toString(_uiMax); in showProperties() [all …]
|
D | StringParameterType.cpp | 49 void CStringParameterType::showProperties(string& strResult) const in showProperties() 51 base::showProperties(strResult); in showProperties() 54 strResult += "Max length: "; in showProperties() 55 strResult += CUtility::toString(_uiMaxLength); in showProperties() 56 strResult += "\n"; in showProperties()
|
D | CompoundRule.cpp | 93 void CCompoundRule::dump(string& strResult) const in dump() 95 strResult += _apcTypes[_bTypeAll]; in dump() 96 strResult += "{"; in dump() 107 strResult += ", "; in dump() 113 pRule->dump(strResult); in dump() 118 strResult += "}"; in dump()
|
D | ConfigurableDomains.h | 81 bool listDomainElements(const std::string& strDomain, std::string& strResult) const; 83 void listAssociatedElements(std::string& strResult) const; 84 void listConflictingElements(std::string& strResult) const; 85 void listDomains(std::string& strResult) const; 87 bool listConfigurations(const std::string& strDomain, std::string& strResult) const; 94 …e(const std::string& strDomain, const std::string& strConfiguration, std::string& strResult) const; 97 …e(const std::string& strDomain, const std::string& strConfiguration, std::string& strResult) const; 100 void listLastAppliedConfigurations(std::string& strResult) const;
|
D | EnumParameterType.cpp | 60 void CEnumParameterType::showProperties(string& strResult) const in showProperties() 62 base::showProperties(strResult); in showProperties() 64 strResult += "Value Pairs:\n"; in showProperties() 74 strResult += "\tLiteral: \""; in showProperties() 75 strResult += pValuePair->getName(); in showProperties() 76 strResult += "\", Numerical: "; in showProperties() 77 strResult += pValuePair->getNumericalAsString(); in showProperties() 78 strResult += "\n"; in showProperties()
|
D | ConfigurableElement.h | 67 void listBelongingDomains(std::string& strResult, bool bVertical = true) const; 76 void listAssociatedDomains(std::string& strResult, bool bVertical = true) const; 80 void listRogueElements(std::string& strResult) const; 120 virtual void showProperties(std::string& strResult) const; 142 …:list<const CConfigurableDomain*>& configurableDomainList, std::string& strResult, bool bVertical)…
|
D | SelectionCriterionRule.cpp | 119 void CSelectionCriterionRule::dump(string& strResult) const in dump() 122 strResult += _pSelectionCriterion->getName(); in dump() 123 strResult += " "; in dump() 125 strResult += _astMatchesWhen[_eMatchesWhen].pcMatchesWhen; in dump() 126 strResult += " "; in dump() 130 strResult += strValue; in dump()
|
D | FixedPointParameterType.cpp | 57 void CFixedPointParameterType::showProperties(string& strResult) const in showProperties() 59 base::showProperties(strResult); in showProperties() 62 strResult += "Notation: Q"; in showProperties() 63 strResult += CUtility::toString(_uiIntegral); in showProperties() 64 strResult += "."; in showProperties() 65 strResult += CUtility::toString(_uiFractional); in showProperties() 66 strResult += "\n"; in showProperties()
|
D | Element.cpp | 200 void CElement::showProperties(string& strResult) const in showProperties() 202 strResult = "\n"; in showProperties() 203 strResult += "Kind: " + getKind() + "\n"; in showProperties() 204 showDescriptionProperty(strResult); in showProperties() 207 void CElement::showDescriptionProperty(std::string &strResult) const in showDescriptionProperty() 210 strResult += gDescriptionPropertyName + ": " + getDescription() + "\n"; in showDescriptionProperty() 452 string strResult; in listQualifiedPaths() local 457 strResult = getQualifiedPath() + "\n"; in listQualifiedPaths() 468 strResult += pChild->listQualifiedPaths(bDive, uiLevel + 1); in listQualifiedPaths() 471 return strResult; in listQualifiedPaths()
|
D | ParameterMgrFullConnector.cpp | 276 string& strResult) in setSequenceAwareness() argument 278 return _pParameterMgr->setSequenceAwareness(strName, bSequenceAware, strResult); in setSequenceAwareness() 282 string& strResult) in getSequenceAwareness() argument 284 return _pParameterMgr->getSequenceAwareness(strName, bSequenceAware, strResult); in getSequenceAwareness() 328 string& strResult) in getApplicationRule() argument 330 return _pParameterMgr->getApplicationRule(strDomain, strConfiguration, strResult); in getApplicationRule()
|
D | ParameterType.cpp | 111 void CParameterType::showProperties(string& strResult) const in showProperties() 113 base::showProperties(strResult); in showProperties() 117 strResult += gUnitPropertyName + ": " + getUnit() + "\n"; in showProperties() 121 strResult += "Scalar size: " + CUtility::toString(getSize()) + " byte(s) \n"; in showProperties()
|
D | DomainConfiguration.cpp | 273 void CDomainConfiguration::getElementSequence(string& strResult) const in getElementSequence() 275 strResult = "\n"; in getElementSequence() 286 strResult += pConfigurableElement->getPath() + "\n"; in getElementSequence() 313 void CDomainConfiguration::getApplicationRule(string& strResult) const in getApplicationRule() 320 strResult.clear(); in getApplicationRule() 323 pRule->dump(strResult); in getApplicationRule() 327 strResult = "<none>"; in getApplicationRule()
|
/external/parameter-framework/test/test-platform/ |
D | TestPlatform.cpp | 152 const IRemoteCommand& remoteCommand, string& strResult) in exit() argument 177 const IRemoteCommand& remoteCommand, string& strResult) in createExclusiveSelectionCriterionFromStateList() argument 180 remoteCommand.getArgument(0), remoteCommand, strResult) ? in createExclusiveSelectionCriterionFromStateList() 185 const IRemoteCommand& remoteCommand, string& strResult) in createInclusiveSelectionCriterionFromStateList() argument 188 remoteCommand.getArgument(0), remoteCommand, strResult) ? in createInclusiveSelectionCriterionFromStateList() 193 const IRemoteCommand& remoteCommand, string& strResult) in createExclusiveSelectionCriterion() argument 198 strResult) ? in createExclusiveSelectionCriterion() 203 const IRemoteCommand& remoteCommand, string& strResult) in createInclusiveSelectionCriterion() argument 208 strResult) ? in createInclusiveSelectionCriterion() 213 const IRemoteCommand& remoteCommand, string& strResult) in startParameterMgr() argument [all …]
|
D | TestPlatform.h | 57 const IRemoteCommand& remoteCommand, std::string& strResult); 59 const IRemoteCommand& remoteCommand, std::string& strResult); 62 const IRemoteCommand& remoteCommand, std::string& strResult); 64 const IRemoteCommand& remoteCommand, std::string& strResult); 76 const IRemoteCommand& remoteCommand, std::string& strResult); 84 const IRemoteCommand& remoteCommand, std::string& strResult); 94 const IRemoteCommand& remoteCommand, std::string& strResult); 102 CommandReturn exit(const IRemoteCommand& remoteCommand, std::string& strResult); 117 const IRemoteCommand& remoteCommand, std::string& strResult); 133 CommandReturn getter(const IRemoteCommand& remoteCommand, std::string& strResult); [all …]
|
/external/parameter-framework/remote-processor/ |
D | RemoteCommandHandlerTemplate.h | 54 …CCommandParser::*RemoteCommandParser)(const IRemoteCommand& remoteCommand, std::string& strResult); 88 …(CCommandParser* pCommandParser, const IRemoteCommand& remoteCommand, std::string& strResult) const in parse() argument 93 strResult = std::string("Not enough arguments supplied\nUsage:\n") + usage(); in parse() 98 switch ((pCommandParser->*_pfnParser)(remoteCommand, strResult)) { in parse() 100 strResult = "Done"; in parse() 105 strResult = usage(); in parse() 159 bool remoteCommandProcess(const IRemoteCommand& remoteCommand, std::string& strResult) in remoteCommandProcess() argument 167 strResult = "Command not found!\nUse \"help\" to show available commands"; in remoteCommandProcess() 174 helpCommandProcess(strResult); in remoteCommandProcess() 179 return pRemoteCommandParserItem->parse(_pCommandParser, remoteCommand, strResult); in remoteCommandProcess() [all …]
|
D | RemoteProcessorServer.cpp | 211 string strResult; in handleNewConnection() local 215 bSuccess = _pCommandHandler->remoteCommandProcess(requestMessage, strResult); in handleNewConnection() 219 strResult = "No handler!"; in handleNewConnection() 226 CAnswerMessage answerMessage(strResult, bSuccess); in handleNewConnection()
|
/external/parameter-framework/bindings/python/ |
D | pfw.i | 134 %apply std::string &OUTPUT { std::string& strResult } 135 …bool setSequenceAwareness(const std::string& strName, bool bSequenceAware, std::string& strResult); 136 …ool getSequenceAwareness(const std::string& strName, bool& bSequenceAware, std::string& strResult); 137 %clear std::string& strResult; 153 %apply std::string &OUTPUT { std::string& strResult } 154 …ionRule(const std::string& strDomain, const std::string& strConfiguration, std::string& strResult); 155 %clear std::string& strResult;
|