Lines Matching refs:va
94 va_list va; in vsprintf_helper2() local
97 va_start(va, fmt); in vsprintf_helper2()
98 result = vsprintf(myfoo.a, fmt, va); // should crash here in vsprintf_helper2()
99 va_end(va); in vsprintf_helper2()
113 va_list va; in vsnprintf_helper2() local
117 va_start(va, fmt); in vsnprintf_helper2()
118 result = vsnprintf(myfoo.a, size, fmt, va); // should crash here in vsnprintf_helper2()
119 va_end(va); in vsnprintf_helper2()
434 va_list va; in vsprintf_helper() local
437 va_start(va, fmt); in vsprintf_helper()
438 result = vsprintf(buf, fmt, va); // should crash here in vsprintf_helper()
439 va_end(va); in vsprintf_helper()
453 va_list va; in vsnprintf_helper() local
457 va_start(va, fmt); in vsnprintf_helper()
458 result = vsnprintf(buf, size, fmt, va); // should crash here in vsnprintf_helper()
459 va_end(va); in vsnprintf_helper()