Searched refs:vsnprintf_s (Results 1 - 10 of 10) sorted by relevance
/third_party/bounds_checking_function/src/ |
H A D | vsnprintf_s.c | 11 * Description: vsnprintf_s function 20 * The vsnprintf_s function is equivalent to the vsnprintf function 22 * The vsnprintf_s function takes a pointer to an argument list, then formats 44 int vsnprintf_s(char *strDest, size_t destMax, size_t count, const char *format, va_list argList) in vsnprintf_s() function 50 SECUREC_ERROR_INVALID_PARAMTER("vsnprintf_s"); in vsnprintf_s() 73 SECUREC_ERROR_INVALID_RANGE("vsnprintf_s"); in vsnprintf_s() 75 SECUREC_ERROR_INVALID_PARAMTER("vsnprintf_s"); in vsnprintf_s() 82 EXPORT_SYMBOL(vsnprintf_s); variable
|
H A D | snprintf_s.c | 53 ret = vsnprintf_s(strDest, destMax, count, format, argList); in snprintf_s()
|
/third_party/gn/src/base/strings/ |
H A D | string_util_win.h | 21 int length = vsnprintf_s(buffer, size, size - 1, format, arguments); in vsnprintf()
|
/third_party/libuv/src/win/ |
H A D | snprintf.c | 36 vsnprintf_s(buf, len, _TRUNCATE, fmt, ap); in snprintf()
|
/third_party/node/deps/uv/src/win/ |
H A D | snprintf.c | 36 vsnprintf_s(buf, len, _TRUNCATE, fmt, ap); in snprintf()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant_lib/cert_mgr_deps/src/ |
H A D | cm_log.c | 36 int32_t ret = vsnprintf_s(buf, MAX_LOG_BUFF_LEN, MAX_LOG_BUFF_LEN - 1, format, ap); in CmLog()
|
/third_party/vk-gl-cts/framework/delibs/debase/ |
H A D | deString.c | 120 res = vsnprintf_s(string, size, _TRUNCATE, format, list); in deVsprintf()
|
/third_party/mbedtls/library/ |
H A D | platform.c | 128 ret = vsnprintf_s(s, n, _TRUNCATE, fmt, arg); in mbedtls_platform_win32_vsnprintf()
|
/third_party/glslang/glslang/Include/ |
H A D | Common.h | 75 #define safe_vsprintf(buf,max,format,args) vsnprintf_s((buf), (max), (max), (format), (args))
|
/third_party/bounds_checking_function/include/ |
H A D | securec.h | 250 * Description: The vsnprintf_s function is equivalent to the vsnprintf function except for 260 SECUREC_API int vsnprintf_s(char *strDest, size_t destMax, size_t count, const char *format, 281 * Description: The vsnprintf_truncated_s function is equivalent to the vsnprintf_s function except
|
Completed in 5 milliseconds