Home
last modified time | relevance | path

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

/ndk/sources/host-tools/sed-4.2.1/lib/
Dunlocked-io.h100 # undef getc
101 # define getc(x) getc_unlocked (x) macro
103 # define getc_unlocked(x) getc (x)
Dgetdelim.c39 # define getc_maybe_unlocked(fp) getc(fp)
45 # define getc_maybe_unlocked(fp) getc(fp)
Dlocalcharset.c94 # undef getc
95 # define getc getc_unlocked macro
165 c = getc (fp); in get_charset_aliases()
174 c = getc (fp); in get_charset_aliases()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcstdio75 int getc(FILE* stream);
111 #ifdef getc
112 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_getc(FILE* __stream) {return getc(__stream);}
113 #undef getc
114 inline _LIBCPP_INLINE_VISIBILITY int getc(FILE* __stream) {return __libcpp_getc(__stream);}
115 #endif // getc
202 using ::getc;
D__std_stream121 int __c = getc(__file_);
148 int __c = getc(__file_);
/ndk/sources/cxx-stl/llvm-libc++/patches.android/
D0007-Fix-libc-compiler-error-when-calling-std-feof.patch21 …-114,12 +114,42 @@ inline _LIBCPP_INLINE_VISIBILITY int __libcpp_getc(FILE* __stream) {return getc(
22 inline _LIBCPP_INLINE_VISIBILITY int getc(FILE* __stream) {return __libcpp_getc(__stream);}
23 #endif // getc
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cstdio.h59 # undef getc
90 using _STLP_VENDOR_CSTD::getc;
/ndk/sources/cxx-stl/stlport/src/
Dstdio_streambuf.cpp161 int c = getc(_M_file); in underflow()
175 int c = getc(_M_file); in uflow()
/ndk/sources/host-tools/sed-4.2.1/m4/
Dunlocked-io.m420 [Define to 1 if you want getc etc. to use unlocked I/O if available.
/ndk/sources/host-tools/nawk-20071023/
Dmain.c177 if ((c = getc(yyin)) != EOF) in pgetc()
Dlib.c193 while ((c=getc(inf)) == '\n' && c != EOF) /* skip leading \n's */ in readrec()
199 for (; (c=getc(inf)) != sep && c != EOF; ) { in readrec()
207 if ((c = getc(inf)) == '\n' || c == EOF) /* 2 in a row */ in readrec()
/ndk/sources/cxx-stl/gabi++/include/
Dcstdio64 using ::getc;
/ndk/sources/cxx-stl/system/include/
Dcstdio64 using ::getc;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dstdio_h.pass.cpp118 static_assert((std::is_same<decltype(getc(fp)), int>::value), ""); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/c.files/
Dcstdio.pass.cpp119 static_assert((std::is_same<decltype(std::getc(fp)), int>::value), ""); in main()
/ndk/sources/host-tools/sed-4.2.1/sed/
Dexecute.c914 if ((ch = getc(input->fp)) != EOF)
937 if ((ch = getc(input->fp)) == EOF)
Dcompile.c237 ch = getc(prog.file); in inchar()
/ndk/sources/host-tools/sed-4.2.1/
Dconfig_h.in629 /* Define to 1 if you want getc etc. to use unlocked I/O if available.