Lines Matching refs:cmdLen
179 unsigned int cmdLen = ntohs(*reinterpret_cast<int *>(pcline->alignmentCmd));
181 // check cmdLen length < 100, copy command + args data ;
182 char *pAlignmentCmd = new char[cmdLen + 1];
183 ret = memcpy_s(pAlignmentCmd, cmdLen + 1, pcline->alignmentCmd + rlen, cmdLen);
188 pAlignmentCmd[cmdLen] = '\0';
189 rlen += cmdLen + 1;
200 int nresult = OnProcessCmd(pAlignmentCmd, cmdLen, pszEValue, eValueLen);
322 * cmdLen : length of strCommand
327 int DistributedAgent::OnProcessCmd(const std::string &strCommand, int cmdLen,
360 cmdLen - cmdNo - 1);
365 nresult = OnProcessCmd(alignmentCmd, cmdNo, szArgs, cmdLen - cmdNo, strExpectValue, expectValueLen);
369 int DistributedAgent::OnProcessCmd(const std::string &strCommand, int cmdLen, const std::string &strArgs,
375 static_cast<int>(strCommand.size()) > cmdLen ||