/debug/ |
A D | wprintf_chk.c | 24 __wprintf_chk (int flag, const wchar_t *format, ...) in __wprintf_chk() argument 32 va_start (ap, format); in __wprintf_chk() 33 ret = __vfwprintf_internal (stdout, format, ap, mode); in __wprintf_chk()
|
A D | asprintf_chk.c | 25 __asprintf_chk (char **result_ptr, int flag, const char *format, ...) in __asprintf_chk() argument 33 va_start (ap, format); in __asprintf_chk() 34 ret = __vasprintf_internal (result_ptr, format, ap, mode); in __asprintf_chk()
|
A D | dprintf_chk.c | 24 __dprintf_chk (int d, int flag, const char *format, ...) in __dprintf_chk() argument 32 va_start (ap, format); in __dprintf_chk() 33 ret = __vdprintf_internal (d, format, ap, mode); in __dprintf_chk()
|
A D | obprintf_chk.c | 24 __obstack_printf_chk (struct obstack *obstack, int flag, const char *format, in __obstack_printf_chk() argument 33 va_start (ap, format); in __obstack_printf_chk() 34 ret = __obstack_vprintf_internal (obstack, format, ap, mode); in __obstack_printf_chk()
|
A D | printf_chk.c | 24 ___printf_chk (int flag, const char *format, ...) in ___printf_chk() argument 32 va_start (ap, format); in ___printf_chk() 33 ret = __vfprintf_internal (stdout, format, ap, mode); in ___printf_chk()
|
A D | fwprintf_chk.c | 24 __fwprintf_chk (FILE *fp, int flag, const wchar_t *format, ...) in __fwprintf_chk() argument 32 va_start (ap, format); in __fwprintf_chk() 33 ret = __vfwprintf_internal (fp, format, ap, mode); in __fwprintf_chk()
|
A D | fprintf_chk.c | 24 ___fprintf_chk (FILE *fp, int flag, const char *format, ...) in ___fprintf_chk() argument 32 va_start (ap, format); in ___fprintf_chk() 33 ret = __vfprintf_internal (fp, format, ap, mode); in ___fprintf_chk()
|
A D | vasprintf_chk.c | 30 __vasprintf_chk (char **result_ptr, int flag, const char *format, va_list ap) in __vasprintf_chk() argument 36 return __vasprintf_internal (result_ptr, format, ap, mode); in __vasprintf_chk()
|
A D | vdprintf_chk.c | 30 __vdprintf_chk (int d, int flag, const char *format, va_list ap) in __vdprintf_chk() argument 36 return __vdprintf_internal (d, format, ap, mode); in __vdprintf_chk()
|
A D | vwprintf_chk.c | 23 __vwprintf_chk (int flag, const wchar_t *format, va_list ap) in __vwprintf_chk() argument 29 return __vfwprintf_internal (stdout, format, ap, mode); in __vwprintf_chk()
|
A D | sprintf_chk.c | 24 ___sprintf_chk (char *s, int flag, size_t slen, const char *format, ...) in ___sprintf_chk() argument 39 va_start (ap, format); in ___sprintf_chk() 40 ret = __vsprintf_internal (s, slen, format, ap, mode); in ___sprintf_chk()
|
A D | swprintf_chk.c | 26 const wchar_t *format, ...) in __swprintf_chk() argument 37 va_start (ap, format); in __swprintf_chk() 38 ret = __vswprintf_internal (s, maxlen, format, ap, mode); in __swprintf_chk()
|
A D | vobprintf_chk.c | 23 __obstack_vprintf_chk (struct obstack *obstack, int flag, const char *format, in __obstack_vprintf_chk() argument 30 return __obstack_vprintf_internal (obstack, format, ap, mode); in __obstack_vprintf_chk()
|
A D | snprintf_chk.c | 26 const char *format, ...) in ___snprintf_chk() argument 37 va_start (ap, format); in ___snprintf_chk() 38 ret = __vsnprintf_internal (s, maxlen, format, ap, mode); in ___snprintf_chk()
|
A D | vfwprintf_chk.c | 23 __vfwprintf_chk (FILE *fp, int flag, const wchar_t *format, va_list ap) in __vfwprintf_chk() argument 29 return __vfwprintf_internal (fp, format, ap, mode); in __vfwprintf_chk()
|
A D | vprintf_chk.c | 23 ___vprintf_chk (int flag, const char *format, va_list ap) in ___vprintf_chk() argument 29 return __vfprintf_internal (stdout, format, ap, mode); in ___vprintf_chk()
|
A D | vfprintf_chk.c | 23 ___vfprintf_chk (FILE *fp, int flag, const char *format, va_list ap) in ___vfprintf_chk() argument 29 return __vfprintf_internal (fp, format, ap, mode); in ___vfprintf_chk()
|
A D | vswprintf_chk.c | 25 const wchar_t *format, va_list ap) in __vswprintf_chk() argument 34 return __vswprintf_internal (s, maxlen, format, ap, mode); in __vswprintf_chk()
|
A D | vsnprintf_chk.c | 25 const char *format, va_list ap) in ___vsnprintf_chk() argument 34 return __vsnprintf_internal (s, maxlen, format, ap, mode); in ___vsnprintf_chk()
|
A D | vsprintf_chk.c | 21 ___vsprintf_chk (char *s, int flag, size_t slen, const char *format, in ___vsprintf_chk() argument 35 return __vsprintf_internal (s, slen, format, ap, mode); in ___vsprintf_chk()
|
A D | Makefile | 118 CFLAGS-tst-chk1.c += -Wno-format -Wno-deprecated-declarations -Wno-error 119 CFLAGS-tst-chk2.c += -Wno-format -Wno-deprecated-declarations -Wno-error 120 CFLAGS-tst-chk3.c += -Wno-format -Wno-deprecated-declarations -Wno-error 121 CFLAGS-tst-chk4.cc += -Wno-format -Wno-deprecated-declarations -Wno-error 122 CFLAGS-tst-chk5.cc += -Wno-format -Wno-deprecated-declarations -Wno-error 123 CFLAGS-tst-chk6.cc += -Wno-format -Wno-deprecated-declarations -Wno-error 124 CFLAGS-tst-chk7.c += -Wno-format -Wno-deprecated-declarations -Wno-error 125 CFLAGS-tst-chk8.cc += -Wno-format -Wno-deprecated-declarations -Wno-error 126 CFLAGS-tst-lfschk1.c += -Wno-format -Wno-deprecated-declarations -Wno-error 127 CFLAGS-tst-lfschk2.c += -Wno-format -Wno-deprecated-declarations -Wno-error [all …]
|