Lines Matching refs:strDest
22 * and writes the given data to the memory pointed to by strDest.
27 * strDest Storage location for the output.
28 * destMax Size of strDest
33 * strDest is updated
39 * If there is a runtime-constraint violation, strDest[0] will be set to the '\0' when strDest and destMax valid
41 int vsprintf_s(char *strDest, size_t destMax, const char *format, va_list argList)
45 if (SECUREC_VSPRINTF_PARAM_ERROR(format, strDest, destMax, SECUREC_STRING_MAX_LEN)) {
46 SECUREC_VSPRINTF_CLEAR_DEST(strDest, destMax, SECUREC_STRING_MAX_LEN);
51 retVal = SecVsnprintfImpl(strDest, destMax, format, argList);
53 strDest[0] = '\0';