Searched defs:pszFunEnd (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Debugger/
H A DDBGCEval.cpp510 char *pszFunEnd = NULL; local
513 pszFunEnd = pszExpr + 1;
514 while (*pszFunEnd != '(' && RT_C_IS_ALNUM(*pszFunEnd))
515 pszFunEnd++;
516 if (*pszFunEnd != '(')
517 pszFunEnd = NULL;
519 if (pszFunEnd)
521 size_t cchFunNm = pszFunEnd - pszFun;
522 return dbgcEvalSubCall(pDbgc, pszFun, cchFunNm, fExternal, pszFunEnd
[all...]

Completed in 46 milliseconds