Lines Matching defs:pszCmd
1315 * @param pszCmd Pointer to the command.
1319 int dbgcEvalCommand(PDBGC pDbgc, char *pszCmd, size_t cchCmd, bool fNoExecute)
1321 char *pszCmdInput = pszCmd;
1326 while (RT_C_IS_BLANK(*pszCmd))
1327 pszCmd++, cchCmd--;
1330 bool const fExternal = *pszCmd == '.';
1332 pszCmd++, cchCmd--;
1337 char *pszArgs = pszCmd;
1341 || !RT_C_IS_ALPHA(*pszCmd))
1350 PCDBGCCMD pCmd = dbgcCommandLookup(pDbgc, pszCmd, pszArgs - pszCmd, fExternal);
1362 int rc = dbgcProcessArguments(pDbgc, pCmd->pszCmd,
1389 "Syntax error: Too few arguments. Minimum is %d for command '%s'.\n", pCmd->cArgsMin, pCmd->pszCmd);
1393 "Syntax error: Too many arguments. Maximum is %d for command '%s'.\n", pCmd->cArgsMax, pCmd->pszCmd);