Searched refs:_IO_putc_unlocked (Results 1 – 15 of 15) sorted by relevance
/haiku/src/system/libroot/posix/glibc/include/bits/ |
H A D | stdio.h | 77 return _IO_putc_unlocked (__c, __stream); in fputc_unlocked() 87 return _IO_putc_unlocked (__c, __stream); in putc_unlocked() 94 return _IO_putc_unlocked (__c, stdout); in putchar_unlocked() 158 if (_IO_putc_unlocked (*__ptr++, __stream) == EOF) \
|
/haiku/src/system/libroot/posix/glibc/libio/ |
H A D | putchar_u.c | 29 return _IO_putc_unlocked (c, _IO_stdout);
|
H A D | putc_u.c | 30 return _IO_putc_unlocked (c, fp);
|
H A D | fputc_u.c | 39 return _IO_putc_unlocked (c, fp);
|
H A D | putchar.c | 32 result = _IO_putc_unlocked (c, _IO_stdout);
|
H A D | fputc.c | 40 result = _IO_putc_unlocked (c, fp);
|
H A D | ioputs.c | 45 && _IO_putc_unlocked('\n', _IO_stdout) != EOF) in _IO_puts()
|
H A D | putc.c | 33 result = _IO_putc_unlocked (c, fp);
|
H A D | iovsprintf.c | 47 _IO_putc_unlocked ('\0', (_IO_FILE *) &sf._sbf);
|
H A D | libio.h | 423 #define _IO_putc_unlocked(_ch, _fp) \ macro
|
/haiku/headers/posix/ |
H A D | libio.h | 227 #define _IO_putc_unlocked(_ch, _fp) \ macro
|
/haiku/src/system/libroot/posix/glibc/stdio-common/ |
H A D | printf_size.c | 40 ? (int)_IO_putwc_unlocked (c, f) : _IO_putc_unlocked (c, f))
|
H A D | printf_fphex.c | 49 ? (int)_IO_putwc_unlocked (c, f) : _IO_putc_unlocked (c, f))
|
H A D | printf_fp.c | 60 ? (int)_IO_putwc_unlocked (c, f) : _IO_putc_unlocked (c, f))
|
H A D | vfprintf.c | 80 # define PUTC(C, F) _IO_putc_unlocked (C, F)
|