/third_party/musl/src/stdio/ |
H A D | putc_unlocked.c | 3 int (putc_unlocked)(int c, FILE *f) in putc_unlocked() function 5 return putc_unlocked(c, f); in putc_unlocked() 8 weak_alias(putc_unlocked, fputc_unlocked); 9 weak_alias(putc_unlocked, _IO_putc_unlocked);
|
H A D | putc.h | 10 c = putc_unlocked(c, f); in locking_putc() 20 return putc_unlocked(c, f); in do_putc()
|
H A D | putchar_unlocked.c | 5 return putc_unlocked(c, stdout); in putchar_unlocked()
|
H A D | puts.c | 7 r = -(fputs(s, stdout) < 0 || putc_unlocked('\n', stdout) < 0); in puts()
|
H A D | fputwc.c | 17 c = putc_unlocked(c, f); in __fputwc_unlocked()
|
/third_party/elfutils/tests/ |
H A D | showptable.c | 114 putc_unlocked ((phdr->p_flags & PF_X) ? 'X' : ' ', stdout); in main() 115 putc_unlocked ((phdr->p_flags & PF_W) ? 'W' : ' ', stdout); in main() 116 putc_unlocked ((phdr->p_flags & PF_R) ? 'R' : ' ', stdout); in main() 118 putc_unlocked ('\n', stdout); in main()
|
/third_party/musl/porting/liteos_a/kernel/src/stdio/ |
H A D | puts.c | 7 r = -(fputs(s, stdout) < 0 || putc_unlocked('\n', stdout) < 0); in puts()
|
H A D | putc.h | 10 c = putc_unlocked(c, f); in locking_putc()
|
/third_party/musl/porting/uniproton/kernel/src/stdio/ |
H A D | putc.h | 10 c = putc_unlocked(c, f); in locking_putc()
|
/third_party/musl/porting/liteos_m/kernel/src/stdio/ |
H A D | putc.h | 10 c = putc_unlocked(c, f); in locking_putc()
|
/third_party/musl/libc-test/src/functionalext/supplement/stdio/ |
H A D | putc_unlocked.c | 34 ret = putc_unlocked(ch[i], stdout); in putc_unlocked_0100()
|
/third_party/musl/porting/liteos_m/kernel/src/internal/ |
H A D | stdio_impl.h | 79 #define putc_unlocked(c, f) \ macro
|
/third_party/musl/porting/liteos_a/kernel/src/internal/ |
H A D | stdio_impl.h | 99 #define putc_unlocked(c, f) \ macro
|
/third_party/musl/porting/uniproton/kernel/src/internal/ |
H A D | stdio_impl.h | 79 #define putc_unlocked(c, f) \ macro
|
/third_party/elfutils/src/ |
H A D | strings.c | 370 putc_unlocked ('\n', stdout); in process_chunk_mb() 433 putc_unlocked ('\n', stdout); in process_chunk()
|
H A D | readelf.c | 9287 putc_unlocked (',', stdout); in print_debug_line_section() 10047 putc_unlocked ('\n', stdout); in print_debug_macinfo_section() 10213 putc_unlocked ('\n', stdout); in print_debug_macro_section()
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | stdio.h | 150 int putc_unlocked(int, FILE *);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | stdio.h | 152 int putc_unlocked(int, FILE *);
|
/third_party/musl/src/internal/ |
H A D | stdio_impl.h | 177 #define putc_unlocked(c, f) \ macro
|
/third_party/musl/porting/linux/user/include/ |
H A D | stdio.h | 153 int putc_unlocked(int, FILE *);
|
/third_party/musl/porting/linux/user/src/internal/ |
H A D | stdio_impl.h | 173 #define putc_unlocked(c, f) \ macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | stdio.h | 150 int putc_unlocked(int, FILE *);
|
/third_party/musl/include/ |
H A D | stdio.h | 153 int putc_unlocked(int, FILE *);
|
/third_party/musl/libc-test/src/api/ |
H A D | stdio.c | 75 {int(*p)(int,FILE*) = putc_unlocked;} in f()
|
/third_party/rust/crates/libc/src/solid/ |
H A D | mod.rs | 513 pub fn putc_unlocked(arg1: c_int, arg2: *mut FILE) -> c_int; in putc_unlocked() functions
|