Home
last modified time | relevance | path

Searched refs:pRemoteCommandParserItem (Results 1 – 2 of 2) sorted by relevance

/external/parameter-framework/remote-processor/
DRemoteCommandHandlerTemplate.h162 …const CRemoteCommandParserItem* pRemoteCommandParserItem = findCommandParserItem(remoteCommand.get… in remoteCommandProcess() local
164 if (!pRemoteCommandParserItem) { in remoteCommandProcess()
179 return pRemoteCommandParserItem->parse(_pCommandParser, remoteCommand, strResult); in remoteCommandProcess()
191 … const CRemoteCommandParserItem* pRemoteCommandParserItem = _remoteCommandParserVector[uiIndex]; in initMaxCommandUsageLength() local
193 … uint32_t uiRemoteCommandUsageLength = (uint32_t)pRemoteCommandParserItem->usage().length(); in initMaxCommandUsageLength()
216 … const CRemoteCommandParserItem* pRemoteCommandParserItem = _remoteCommandParserVector[uiIndex]; in helpCommandProcess() local
218 std::string strUsage = pRemoteCommandParserItem->usage(); in helpCommandProcess()
230 … strResult += std::string("=> ") + std::string(pRemoteCommandParserItem->getDescription()) + "\n"; in helpCommandProcess()
240 … const CRemoteCommandParserItem* pRemoteCommandParserItem = _remoteCommandParserVector[uiIndex]; in findCommandParserItem() local
242 if (pRemoteCommandParserItem->getCommandName() == strCommandName) { in findCommandParserItem()
[all …]
/external/parameter-framework/parameter/
DParameterMgr.cpp362 …const SRemoteCommandParserItem* pRemoteCommandParserItem = &gastRemoteCommandParserItems[uiRemoteC… in CParameterMgr() local
364 _pCommandHandler->addCommandParser(pRemoteCommandParserItem->_pcCommandName, in CParameterMgr()
365 pRemoteCommandParserItem->_pfnParser, in CParameterMgr()
366 pRemoteCommandParserItem->_uiMinArgumentCount, in CParameterMgr()
367 pRemoteCommandParserItem->_pcHelp, in CParameterMgr()
368 pRemoteCommandParserItem->_pcDescription); in CParameterMgr()