Lines Matching refs:va
93 va_list va; in vsprintf_helper2() local
96 va_start(va, fmt); in vsprintf_helper2()
97 result = vsprintf(myfoo.a, fmt, va); // should crash here in vsprintf_helper2()
98 va_end(va); in vsprintf_helper2()
112 va_list va; in vsnprintf_helper2() local
116 va_start(va, fmt); in vsnprintf_helper2()
117 result = vsnprintf(myfoo.a, size, fmt, va); // should crash here in vsnprintf_helper2()
118 va_end(va); in vsnprintf_helper2()
431 va_list va; in vsprintf_helper() local
434 va_start(va, fmt); in vsprintf_helper()
435 result = vsprintf(buf, fmt, va); // should crash here in vsprintf_helper()
436 va_end(va); in vsprintf_helper()
450 va_list va; in vsnprintf_helper() local
454 va_start(va, fmt); in vsnprintf_helper()
455 result = vsnprintf(buf, size, fmt, va); // should crash here in vsnprintf_helper()
456 va_end(va); in vsnprintf_helper()