/external/parameter-framework/parameter/ |
LinearParameterAdaptation.cpp | 47 void CLinearParameterAdaptation::showProperties(string& strResult) const 49 base::showProperties(strResult); 52 strResult += " - SlopeNumerator: "; 53 strResult += CUtility::toString(_dSlopeNumerator); 54 strResult += "\n"; 57 strResult += " - SlopeDenominator: "; 58 strResult += CUtility::toString(_dSlopeDenominator); 59 strResult += "\n";
|
LogarithmicParameterAdaptation.cpp | 44 void CLogarithmicParameterAdaptation::showProperties(std::string& strResult) const 46 base::showProperties(strResult); 48 strResult += " - LogarithmBase: "; 49 strResult += CUtility::toString(_dLogarithmBase); 50 strResult += "\n"; 51 strResult += " - FloorValue: "; 52 strResult += CUtility::toString(_dFloorValue); 53 strResult += "\n";
|
ParameterMgr.cpp | [all...] |
ParameterAdaptation.cpp | 53 void CParameterAdaptation::showProperties(string& strResult) const 56 strResult += " - Type: "; 57 strResult += getName(); 58 strResult += "\n"; 61 strResult += " - Offset: "; 62 strResult += CUtility::toString(_iOffset); 63 strResult += "\n";
|
ParameterMgr.h | 80 typedef CCommandHandler::CommandStatus (CParameterMgr::*RemoteCommandParser)(const IRemoteCommand& remoteCommand, std::string& strResult); 252 std::string& strResult); 254 std::string& strResult); 272 std::string& strResult); 350 * @param[out] strResult contains the xml description or the error description in case false is returned 356 std::string& strResult) const; 378 CCommandHandler::CommandStatus versionCommandProcess(const IRemoteCommand& remoteCommand, std::string& strResult); 380 CCommandHandler::CommandStatus statusCommandProcess(const IRemoteCommand& remoteCommand, std::string& strResult); 382 CCommandHandler::CommandStatus setTuningModeCommandProcess(const IRemoteCommand& remoteCommand, std::string& strResult); 383 CCommandHandler::CommandStatus getTuningModeCommandProcess(const IRemoteCommand& remoteCommand, std::string& strResult); [all...] |
StringParameterType.cpp | 49 void CStringParameterType::showProperties(string& strResult) const 51 base::showProperties(strResult); 54 strResult += "Max length: "; 55 strResult += CUtility::toString(_uiMaxLength); 56 strResult += "\n";
|
BitParameterType.cpp | 53 void CBitParameterType::showProperties(string& strResult) const 55 base::showProperties(strResult); 58 strResult += "Bit pos: "; 59 strResult += CUtility::toString(_uiBitPos); 60 strResult += "\n"; 63 strResult += "Bit size: "; 64 strResult += CUtility::toString(_uiBitSize); 65 strResult += "\n"; 68 strResult += "Max: "; 69 strResult += CUtility::toString(_uiMax) [all...] |
ConfigurableDomains.cpp | 228 bool CConfigurableDomains::listConfigurations(const string& strDomain, string& strResult) const 230 const CConfigurableDomain* pConfigurableDomain = findConfigurableDomain(strDomain, strResult); 237 pConfigurableDomain->listChildren(strResult); 281 bool CConfigurableDomains::listDomainElements(const string& strDomain, string& strResult) const 284 const CConfigurableDomain* pConfigurableDomain = findConfigurableDomain(strDomain, strResult); 291 pConfigurableDomain->listAssociatedToElements(strResult); 311 void CConfigurableDomains::listAssociatedElements(string& strResult) const 313 strResult = "\n"; 331 strResult += pConfigurableElement->getPath() + " [" + strAssociatedDomainList + "]\n"; 335 void CConfigurableDomains::listConflictingElements(string& strResult) cons [all...] |
CompoundRule.cpp | 93 void CCompoundRule::dump(string& strResult) const 95 strResult += _apcTypes[_bTypeAll]; 96 strResult += "{"; 107 strResult += ", "; 113 pRule->dump(strResult); 118 strResult += "}";
|
ConfigurableElement.cpp | 190 void CConfigurableElement::showProperties(std::string& strResult) const 192 base::showProperties(strResult); 194 strResult += "Total size: " + getFootprintAsString() + "\n"; 320 void CConfigurableElement::listBelongingDomains(std::string& strResult, bool bVertical) const 328 listDomains(configurableDomainList, strResult, bVertical); 332 void CConfigurableElement::listRogueElements(std::string& strResult) const 334 strResult = "\n"; 350 strResult += pConfigurableElement->getPath() + "\n"; 399 void CConfigurableElement::listAssociatedDomains(std::string& strResult, bool bVertical) const 402 listDomains(_configurableDomainList, strResult, bVertical) [all...] |
IntegerParameterType.cpp | 62 void CIntegerParameterType::showProperties(string& strResult) const 64 base::showProperties(strResult); 67 strResult += "Signed: "; 68 strResult += _bSigned ? "yes" : "no"; 69 strResult += "\n"; 72 strResult += "Min: "; 73 strResult += _bSigned ? CUtility::toString((int32_t)_uiMin) : CUtility::toString(_uiMin); 74 strResult += "\n"; 77 strResult += "Max: "; 78 strResult += _bSigned ? CUtility::toString((int32_t)_uiMax) : CUtility::toString(_uiMax) [all...] |
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 bool getElementSequence(const std::string& strDomain, const std::string& strConfiguration, std::string& strResult) const; 97 bool getApplicationRule(const std::string& strDomain, const std::string& strConfiguration, std::string& strResult) const; 100 void listLastAppliedConfigurations(std::string& strResult) const;
|
EnumParameterType.cpp | 60 void CEnumParameterType::showProperties(string& strResult) const 62 base::showProperties(strResult); 64 strResult += "Value Pairs:\n"; 74 strResult += "\tLiteral: \""; 75 strResult += pValuePair->getName(); 76 strResult += "\", Numerical: "; 77 strResult += pValuePair->getNumericalAsString(); 78 strResult += "\n";
|
SelectionCriterionRule.cpp | 119 void CSelectionCriterionRule::dump(string& strResult) const 122 strResult += _pSelectionCriterion->getName(); 123 strResult += " "; 125 strResult += _astMatchesWhen[_eMatchesWhen].pcMatchesWhen; 126 strResult += " "; 130 strResult += strValue;
|
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 void listDomains(const std::list<const CConfigurableDomain*>& configurableDomainList, std::string& strResult, bool bVertical) const;
|
ParameterMgrFullConnector.cpp | 276 string& strResult) 278 return _pParameterMgr->setSequenceAwareness(strName, bSequenceAware, strResult); 282 string& strResult) 284 return _pParameterMgr->getSequenceAwareness(strName, bSequenceAware, strResult); 328 string& strResult) 330 return _pParameterMgr->getApplicationRule(strDomain, strConfiguration, strResult);
|
ParameterType.cpp | 111 void CParameterType::showProperties(string& strResult) const 113 base::showProperties(strResult); 117 strResult += gUnitPropertyName + ": " + getUnit() + "\n"; 121 strResult += "Scalar size: " + CUtility::toString(getSize()) + " byte(s) \n";
|
FixedPointParameterType.cpp | 57 void CFixedPointParameterType::showProperties(string& strResult) const 59 base::showProperties(strResult); 62 strResult += "Notation: Q"; 63 strResult += CUtility::toString(_uiIntegral); 64 strResult += "."; 65 strResult += CUtility::toString(_uiFractional); 66 strResult += "\n";
|
Element.cpp | 200 void CElement::showProperties(string& strResult) const 202 strResult = "\n"; 203 strResult += "Kind: " + getKind() + "\n"; 204 showDescriptionProperty(strResult); 207 void CElement::showDescriptionProperty(std::string &strResult) const 210 strResult += gDescriptionPropertyName + ": " + getDescription() + "\n"; 452 string strResult; 457 strResult = getQualifiedPath() + "\n"; 468 strResult += pChild->listQualifiedPaths(bDive, uiLevel + 1); 471 return strResult; [all...] |
TypeElement.cpp | 77 void CTypeElement::showProperties(std::string& strResult) const 80 showDescriptionProperty(strResult);
|
/external/parameter-framework/remote-processor/ |
RemoteCommandHandlerTemplate.h | 50 * @param[out] strResult a string containing the result of the command. 54 typedef CommandStatus (CCommandParser::*RemoteCommandParser)(const IRemoteCommand& remoteCommand, std::string& strResult); 88 bool parse(CCommandParser* pCommandParser, const IRemoteCommand& remoteCommand, std::string& strResult) const 93 strResult = std::string("Not enough arguments supplied\nUsage:\n") + usage(); 98 switch ((pCommandParser->*_pfnParser)(remoteCommand, strResult)) { 100 strResult = "Done"; 105 strResult = usage(); 159 bool remoteCommandProcess(const IRemoteCommand& remoteCommand, std::string& strResult) 167 strResult = "Command not found!\nUse \"help\" to show available commands"; 174 helpCommandProcess(strResult); [all...] |
RemoteProcessorServer.cpp | 211 string strResult; 215 bSuccess = _pCommandHandler->remoteCommandProcess(requestMessage, strResult); 219 strResult = "No handler!"; 226 CAnswerMessage answerMessage(strResult, bSuccess);
|
/external/parameter-framework/test/test-platform/ |
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...] |
TestPlatform.cpp | 152 const IRemoteCommand& remoteCommand, string& strResult) 177 const IRemoteCommand& remoteCommand, string& strResult) 180 remoteCommand.getArgument(0), remoteCommand, strResult) ? 185 const IRemoteCommand& remoteCommand, string& strResult) 188 remoteCommand.getArgument(0), remoteCommand, strResult) ? 193 const IRemoteCommand& remoteCommand, string& strResult) 198 strResult) ? 203 const IRemoteCommand& remoteCommand, string& strResult) 208 strResult) ? 213 const IRemoteCommand& remoteCommand, string& strResult) [all...] |
/external/parameter-framework/bindings/python/ |
pfw.i | 134 %apply std::string &OUTPUT { std::string& strResult } 135 bool setSequenceAwareness(const std::string& strName, bool bSequenceAware, std::string& strResult); 136 bool getSequenceAwareness(const std::string& strName, bool& bSequenceAware, std::string& strResult); 137 %clear std::string& strResult; 153 %apply std::string &OUTPUT { std::string& strResult } 154 bool getApplicationRule(const std::string& strDomain, const std::string& strConfiguration, std::string& strResult); 155 %clear std::string& strResult;
|