Lines Matching refs:strDest
26 * strDest Storage location for the output.
32 * strDest is updated
35 * return the number of wide characters stored in strDest, not counting the terminating null wide character.
38 * If there is a runtime-constraint violation, strDest[0] will be set to the '\0' when strDest and destMax valid
40 int vswprintf_s(wchar_t *strDest, size_t destMax, const wchar_t *format, va_list argList)
43 if (SECUREC_VSPRINTF_PARAM_ERROR(format, strDest, destMax, SECUREC_WCHAR_STRING_MAX_LEN)) {
44 SECUREC_VSPRINTF_CLEAR_DEST(strDest, destMax, SECUREC_WCHAR_STRING_MAX_LEN);
49 retVal = SecVswprintfImpl(strDest, destMax, format, argList);
51 strDest[0] = L'\0';