OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fgetc
(Results
1 - 25
of
144
) sorted by null
1
2
3
4
5
6
/bionic/libc/upstream-openbsd/lib/libc/stdio/
fgetc.c
1
/* $OpenBSD:
fgetc
.c,v 1.8 2009/11/09 00:18:27 kurt Exp $ */
37
fgetc
(FILE *fp)
function
/prebuilts/go/darwin-x86/misc/swig/stdio/
file.swig
24
int
fgetc
(FILE *);
/prebuilts/go/linux-x86/misc/swig/stdio/
file.swig
24
int
fgetc
(FILE *);
/external/vboot_reference/tests/futility/
binary_editor.c
29
for ( curpos = 0; (c =
fgetc
(stdin)) != EOF; curpos++) {
/external/toybox/toys/other/
xxd.c
101
if ((n1 = n2 = dehex(
fgetc
(fp))) < 0 || (n2 = dehex(
fgetc
(fp))) < 0) {
112
tmp =
fgetc
(fp);
117
while ((tmp =
fgetc
(fp)) != EOF && tmp != '\n')
/system/connectivity/shill/
file_reader.cc
51
while ((ch =
fgetc
(fp)) != EOF) {
/external/libpcap/msdos/
bin2c.c
34
while ((ch =
fgetc
(inFile)) != EOF)
/ndk/sources/cxx-stl/gabi++/include/
cstdio
50
using ::
fgetc
;
/ndk/sources/cxx-stl/system/include/
cstdio
50
using ::
fgetc
;
/prebuilts/ndk/current/sources/cxx-stl/gabi++/include/
cstdio
50
using ::
fgetc
;
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/gabi++/include/
cstdio
50
using ::
fgetc
;
/prebuilts/ndk/current/sources/cxx-stl/system/include/
cstdio
50
using ::
fgetc
;
/external/libpng/contrib/arm-neon/
linux.c
45
int ch =
fgetc
(f);
/external/lzma/CPP/Common/
StdInStream.cpp
90
int c =
fgetc
(_stream); // getc() doesn't work in BeOS?
/system/extras/ext4_utils/
blk_alloc_to_base_fs.c
55
while ((c =
fgetc
(blk_alloc_file)) != EOF) {
/external/icu/icu4c/source/test/perf/ubrkperf/
ubrkperfold.cpp
514
BOMC1 =
fgetc
(fFile);
515
BOMC2 =
fgetc
(fFile);
521
else if (BOMC1 == 0xEF && BOMC2 == 0xBB && (BOMC3 =
fgetc
(fFile)) == 0xBF ) {
545
cL =
fgetc
(fFile);
546
cH =
fgetc
(fFile);
557
cH =
fgetc
(fFile);
558
cL =
fgetc
(fFile);
574
int ch =
fgetc
(fFile); // Note: c and ch are separate cause eof test doesn't work on UChar type.
603
bytes[i] =
fgetc
(fFile);
/bionic/libstdc++/include/
cstdio
50
using ::
fgetc
;
/external/icu/icu4c/source/tools/toolutil/
filestrm.c
131
int c =
fgetc
((FILE*)fileStream);
146
int32_t c =
fgetc
((FILE*)fileStream);
/ndk/sources/cxx-stl/stlport/src/
stdio_streambuf.cpp
159
int c =
fgetc
(_M_file);
173
int c =
fgetc
(_M_file);
/external/iw/
vendor.c
20
while ((data =
fgetc
(file)) != EOF) {
/external/autotest/client/profilers/powertop/src/
wireless.c
69
val =
fgetc
(file);
89
val =
fgetc
(file);
154
val =
fgetc
(file);
/external/libpng/contrib/pngminus/
pnm2png.c
522
ret =
fgetc
(pnm_file);
527
ret =
fgetc
(pnm_file);
539
ret =
fgetc
(pnm_file);
571
old_value =
fgetc
(pnm_file);
/ndk/sources/cxx-stl/stlport/stlport/stl/
_cstdio.h
71
using _STLP_VENDOR_CSTD::
fgetc
;
/prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_cstdio.h
71
using _STLP_VENDOR_CSTD::
fgetc
;
/external/jhead/
jpgfile.c
134
a =
fgetc
(infile);
136
if (a != 0xff ||
fgetc
(infile) != M_SOI){
148
marker =
fgetc
(infile);
162
lh =
fgetc
(infile);
163
ll =
fgetc
(infile);
Completed in 879 milliseconds
1
2
3
4
5
6