Searched defs:cchCmd (Results 1 - 3 of 3) sorted by relevance
/vbox/src/VBox/Debugger/ |
H A D | DBGCCmdWorkers.cpp | 63 size_t cchCmd = pszCmd ? strlen(pszCmd) : 0; local 64 pBp = (PDBGCBP)RTMemAlloc(RT_OFFSETOF(DBGCBP, szCmd[cchCmd + 1])); 67 if (cchCmd) 68 memcpy(pBp->szCmd, pszCmd, cchCmd + 1); 71 pBp->cchCmd = cchCmd; 105 size_t cchCmd = strlen(pszCmd); local 106 if (strlen(pBp->szCmd) >= cchCmd) 108 memcpy(pBp->szCmd, pszCmd, cchCmd + 1); 109 pBp->cchCmd [all...] |
H A D | DBGCEval.cpp | 1316 * @param cchCmd Length of the command. 1319 int dbgcEvalCommand(PDBGC pDbgc, char *pszCmd, size_t cchCmd, bool fNoExecute) argument 1327 pszCmd++, cchCmd--; 1332 pszCmd++, cchCmd--;
|
H A D | DBGCInternal.h | 44 size_t cchCmd; member in struct:DBGCBP 384 int dbgcEvalCommand(PDBGC pDbgc, char *pszCmd, size_t cchCmd, bool fNoExecute);
|
Completed in 41 milliseconds