/libio/ |
A D | ioputs.c | 36 _IO_acquire_lock (stdout); in _IO_puts() 38 if ((_IO_vtable_offset (stdout) != 0 in _IO_puts() 39 || _IO_fwide (stdout, -1) == -1) in _IO_puts() 40 && _IO_sputn (stdout, str, len) == len in _IO_puts() 41 && _IO_putc_unlocked ('\n', stdout) != EOF) in _IO_puts() 44 _IO_release_lock (stdout); in _IO_puts()
|
A D | tst-bz24051.c | 41 stdout = fdopen (fd, "w+"); in do_test_narrow() 42 TEST_VERIFY_EXIT (stdout != NULL); in do_test_narrow() 49 rewind (stdout); in do_test_narrow() 50 TEST_VERIFY_EXIT (fgets (buf, sizeof (buf), stdout) != NULL); in do_test_narrow() 61 stdout = fdopen (fd, "w+"); in do_test_wide() 62 TEST_VERIFY_EXIT (stdout != NULL); in do_test_wide() 68 rewind (stdout); in do_test_wide() 69 TEST_VERIFY_EXIT (fgetws (buf, array_length (buf), stdout) != NULL); in do_test_wide()
|
A D | putwchar.c | 25 _IO_acquire_lock (stdout); in putwchar() 26 result = _IO_putwc_unlocked (wc, stdout); in putwchar() 27 _IO_release_lock (stdout); in putwchar()
|
A D | putchar.c | 27 _IO_acquire_lock (stdout); in putchar() 28 result = _IO_putc_unlocked (c, stdout); in putchar() 29 _IO_release_lock (stdout); in putchar()
|
A D | putchar_u.c | 26 CHECK_FILE (stdout, EOF); in putchar_unlocked() 27 return _IO_putc_unlocked (c, stdout); in putchar_unlocked()
|
A D | putwchar_u.c | 24 CHECK_FILE (stdout, WEOF); in putwchar_unlocked() 25 return _IO_putwc_unlocked (wc, stdout); in putwchar_unlocked()
|
A D | tst-fputws.c | 29 setvbuf (stdout, NULL, _IONBF, 0); in do_test() 31 if (fputws (str, stdout) < 0) in do_test()
|
A D | stdio.c | 31 #undef stdout 34 FILE *stdout = (FILE *) &_IO_2_1_stdout_; variable
|
A D | tst-ungetwc1.c | 53 fflush (stdout); in do_test() 63 fflush (stdout); in do_test() 67 fflush (stdout); in do_test() 73 fflush (stdout); in do_test()
|
A D | oldstdfiles.c | 59 #undef stdout 63 extern FILE *stdout; 79 stdout = (FILE *) &_IO_stdout_; in _IO_check_libio() 82 stdin->_vtable_offset = stdout->_vtable_offset in _IO_check_libio()
|
A D | tst_wprintf.c | 7 fputws (L"Hello world!\n", stdout); in main()
|
A D | vwprintf.c | 28 return __vfwprintf_internal (stdout, format, arg, 0); in __vwprintf()
|
A D | wprintf.c | 32 done = __vfwprintf_internal (stdout, format, arg, 0); in __wprintf()
|
A D | tst-sscanf.c | 16 fflush (stdout); in do_test()
|
A D | tst-fopenloc.c | 76 fputws (buf, stdout); in do_test()
|
A D | bug-ungetwc1.c | 87 fflush (stdout); in do_test()
|
A D | bug-ungetwc2.c | 89 fflush (stdout); in do_test()
|
A D | stdio.h | 144 extern FILE *stdout; /* Standard output stream. */ 148 #define stdout stdout macro
|
A D | Versions | 44 stderr; stdin; stdout;
|
A D | wfileops.c | 209 _IO_acquire_lock (stdout); in libc_hidden_def() 211 if ((stdout->_flags & (_IO_LINKED | _IO_NO_WRITES | _IO_LINE_BUF)) in libc_hidden_def() 213 _IO_OVERFLOW (stdout, EOF); in libc_hidden_def() 215 _IO_release_lock (stdout); in libc_hidden_def()
|
A D | fileops.c | 496 _IO_acquire_lock (stdout); in _IO_new_file_underflow() 498 if ((stdout->_flags & (_IO_LINKED | _IO_NO_WRITES | _IO_LINE_BUF)) in _IO_new_file_underflow() 500 _IO_OVERFLOW (stdout, EOF); in _IO_new_file_underflow() 502 _IO_release_lock (stdout); in _IO_new_file_underflow()
|
A D | tst-ftell-active-handler.c | 392 putc ('\n', stdout); in do_ftell_test()
|
/libio/bits/ |
A D | stdio.h | 41 return vfprintf (stdout, __fmt, __arg); in vprintf() 84 return putc (__c, stdout); in putchar() 110 return __putc_unlocked_body (__c, stdout); in putchar_unlocked()
|
A D | stdio2.h | 125 return __vfprintf_chk (stdout, __USE_FORTIFY_LEVEL - 1, __fmt, __ap); in vprintf()
|