Lines Matching refs:strDest
23 * strDest and appends a terminating null. Each argument (if any) is converted
29 * strDest Storage location for the output.
37 * strDest is updated
44 * If there is a runtime-constraint violation, strDest[0] will be set to the '\0' when strDest and destMax valid
47 int snprintf_s(char *strDest, size_t destMax, size_t count, const char *format, ...)
53 ret = vsnprintf_s(strDest, destMax, count, format, argList);
70 * strDest and appends a terminating null. Each argument (if any) is converted
76 * strDest Storage location for the output.
83 * strDest is updated
90 * If there is a runtime-constraint violation, strDest[0] will be set to the '\0' when strDest and destMax valid
93 int snprintf_truncated_s(char *strDest, size_t destMax, const char *format, ...)
99 ret = vsnprintf_truncated_s(strDest, destMax, format, argList);