Home
last modified time | relevance | path

Searched refs:putc (Results 1 – 18 of 18) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/patches.android/
D0007-Fix-libc-compiler-error-when-calling-std-feof.patch31 #ifdef putc
32 …inline _LIBCPP_INLINE_VISIBILITY int __libcpp_putc(int __c, FILE* __stream) {return putc(__c, __st…
33 #undef putc
34 …inline _LIBCPP_INLINE_VISIBILITY int putc(int __c, FILE* __stream) {return __libcpp_putc(__c, __st…
35 #endif // putc
D0008-Remove-gcc-warning-about-redefinition-of-putchar-wit.patch24 …inline _LIBCPP_INLINE_VISIBILITY int putc(int __c, FILE* __stream) {return __libcpp_putc(__c, __st…
25 #endif // putc
/ndk/sources/host-tools/sed-4.2.1/lib/
Dunlocked-io.h114 # undef putc
115 # define putc(x,y) putc_unlocked (x,y) macro
117 # define putc_unlocked(x,y) putc (x,y)
Derror.c81 # undef putc
82 # define putc(c, fp) INTUSE(_IO_putc) (c, fp) macro
214 putc ('\n', stderr); in error_tail()
Dstdio.in.h452 # undef putc
453 # define putc rpl_fputc
454 extern int putc (int c, FILE *stream);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcstdio78 int putc(int c, FILE* stream);
123 #ifdef putc
124 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_putc(int __c, FILE* __stream) {return putc(__c, __str…
125 #undef putc
126 inline _LIBCPP_INLINE_VISIBILITY int putc(int __c, FILE* __stream) {return __libcpp_putc(__c, __str…
127 #endif // putc
207 using ::putc;
/ndk/sources/host-tools/sed-4.2.1/sed/
Dfmt.c252 putc ('\n', outfile); in get_paragraph()
282 putc (c, outfile); in copy_rest()
563 putc ('\n', outfile); in put_line()
576 putc (*s++, outfile); in put_word()
587 putc (' ', outfile); in put_space()
Dutils.c82 putc('\n', stderr); in panic()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cstdio.h58 # undef putc
91 using _STLP_VENDOR_CSTD::putc;
/ndk/sources/host-tools/make-3.81/
Dansi2knr.c708 while ( p != endfn ) putc(*p, out), p++;
714 putc(*p, out);
720 putc(*p, out), p++;
Dmisc.c252 putc ('\n', stderr);
Dvariable.c1441 putc ('\n', stdout); in print_variable_set()
/ndk/sources/host-tools/nawk-20071023/
Dlib.c623 putc(*p, stderr); in eprint()
627 putc(*p, stderr); in eprint()
631 putc(c, stderr); in eprint()
634 putc('\n', stderr); in eprint()
/ndk/sources/cxx-stl/system/include/
Dcstdio69 using ::putc;
/ndk/sources/cxx-stl/gabi++/include/
Dcstdio69 using ::putc;
/ndk/sources/cxx-stl/stlport/src/
Dstdio_streambuf.cpp227 int result = putc(c, _M_file); in overflow()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dstdio_h.pass.cpp121 static_assert((std::is_same<decltype(putc(0,fp)), int>::value), ""); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/c.files/
Dcstdio.pass.cpp124 static_assert((std::is_same<decltype(std::putc(0,fp)), int>::value), ""); in main()