Lines Matching refs:destMax
195 * except for the parameter destMax/count and the explicit runtime-constraints violation
202 * destMax The size of the strDest for output.
215 * return -1 if count < destMax and the output string has been truncated
217 * If there is a runtime-constraint violation, strDest[0] will be set to the '\0' when strDest and destMax valid
221 int vsnprintfp_s(char *strDest, size_t destMax, size_t count, int priv, const char *format, va_list arglist)
225 if (format == NULL || strDest == NULL || destMax == 0 || destMax > SECUREC_STRING_MAX_LEN ||
227 if (strDest != NULL && destMax > 0) {
234 if (destMax > count) {
240 } else { /* destMax <= count */
241 retVal = SecVsnprintfPImpl(strDest, destMax, priv, format, arglist);