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

/vbox/src/bldprogs/
H A DVBoxCPP.cpp821 * @param cchIdentifier The length of the identifier. RTSTR_MAX if not
824 static bool vbcppValidateCIdentifier(PVBCPP pThis, const char *pchIdentifier, size_t cchIdentifier) argument
826 if (cchIdentifier == RTSTR_MAX)
827 cchIdentifier = strlen(pchIdentifier);
829 if (cchIdentifier == 0)
837 vbcppErrorPos(pThis, pchIdentifier, "Bad lead chararacter in identifier: '%.*s'", cchIdentifier, pchIdentifier);
841 for (size_t off = 1; off < cchIdentifier; off++)
845 vbcppErrorPos(pThis, pchIdentifier + off, "Illegal chararacter in identifier: '%.*s' (#%zu)", cchIdentifier, pchIdentifier, off + 1);

Completed in 61 milliseconds