HomeSort by relevance Sort by last modified time
    Searched refs:fopen (Results 1 - 25 of 1089) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bison/lib/
stdio--.h 24 #undef fopen macro
25 #define fopen fopen_safer macro
fopen-safer.c 1 /* Invoke fopen, but avoid some glitches.
34 /* Like fopen, but do not return stdin, stdout, or stderr. */
39 FILE *fp = fopen (file, mode);
  /external/clang/test/Analysis/
stream.c 8 extern FILE *fopen(const char *path, const char *mode);
17 FILE *p = fopen("foo", "r");
24 FILE *p = fopen("foo", "r");
30 FILE *p = fopen("foo", "r");
36 FILE *p = fopen("foo", "r");
42 FILE *p = fopen("foo", "r");
51 FILE *p = fopen("foo", "r");
63 FILE *p = fopen("foo.c", "r");
70 FILE *p = fopen("foo.c", "r");
cxx-method-names.cpp 8 void fopen(); // stream checker
18 E.fopen();
  /external/valgrind/main/none/tests/
threadederrno.c 10 FILE* f = fopen("bogus2", "r");
17 FILE* f = fopen("bogus3", "r");
29 f = fopen("bogus", "r");
  /bionic/libc/bionic/
pututline.c 39 if (!(f = fopen(_PATH_UTMP, "w+")))
58 if (!(f = fopen(_PATH_UTMP, "w+")))
utmp.c 61 if ((ut = fopen(utfile, "r")) == NULL)
  /external/compiler-rt/SDKs/linux/usr/include/
stdio.h 31 extern FILE *fopen(const char * restrict, const char * restrict);
  /external/webkit/Source/ThirdParty/ANGLE/src/common/
debug.cpp 29 FILE *file = fopen(TRACE_OUTPUT_FILE, "a");
  /dalvik/tests/023-many-interfaces/
iface-gen.c 20 fp = fopen(nameBuf, "w");
33 fp = fopen("func-decl", "w");
  /external/oprofile/libutil/
op_lockfile.c 27 fp = fopen(file, "r");
61 fp = fopen(file, "w");
  /external/webrtc/src/modules/audio_processing/test/
unpack.cc 79 FILE* debug_file = fopen(argv[1], "rb");
84 FILE* input_file = fopen(FLAGS_input_file.c_str(), "wb");
89 FILE* output_file = fopen(FLAGS_output_file.c_str(), "wb");
94 FILE* reverse_file = fopen(FLAGS_reverse_file.c_str(), "wb");
99 FILE* settings_file = fopen(FLAGS_settings_file.c_str(), "wb");
109 delay_file = fopen(FLAGS_delay_file.c_str(), "wb");
114 drift_file = fopen(FLAGS_drift_file.c_str(), "wb");
119 level_file = fopen(FLAGS_level_file.c_str(), "wb");
  /external/dropbear/libtomcrypt/src/hashes/helper/
hash_file.c 40 in = fopen(fname, "rb");
  /external/webkit/LayoutTests/http/tests/resources/
portabilityLayer.php 25 $handle = fopen($filename, "w");
  /frameworks/compile/libbcc/bcinfo/Wrap/
file_wrapper_output.cpp 23 _file = fopen(name, "wb");
  /external/dropbear/libtommath/demo/
timing.c 108 log = fopen("logs/add.log", "w");
129 log = fopen("logs/sub.log", "w");
161 log = fopen((ix == 0) ? "logs/mult.log" : "logs/mult_kara.log", "w");
182 log = fopen((ix == 0) ? "logs/sqr.log" : "logs/sqr_kara.log", "w");
238 log = fopen("logs/expt.log", "w");
239 logb = fopen("logs/expt_dr.log", "w");
240 logc = fopen("logs/expt_2k.log", "w");
241 logd = fopen("logs/expt_2kl.log", "w");
283 log = fopen("logs/invmod.log", "w");
  /external/elfutils/libcpu/
i386_gendis.c 61 i386_in = fopen (infname, "r");
  /frameworks/av/drm/common/
ReadWriteUtils.cpp 37 file = fopen(filePath.string(), "r");
59 file = fopen(filePath.string(), "r");
80 file = fopen(filePath.string(), "w+");
97 file = fopen(filePath.string(), "a+");
  /external/dhcpcd/
duid.c 56 if ((f = fopen(DUID, "r"))) {
74 if (!(f = fopen(DUID, "w")))
  /external/libvpx/examples/
decoder_tmpl.c 58 if(!(infile = fopen(argv[1], "rb")))
60 if(!(outfile = fopen(argv[2], "wb")))
  /frameworks/compile/slang/
slang-data.c 17 FILE *infile = fopen(infile_name, "rb");
24 FILE *outfile = fopen(outfile_name, "w");
  /system/vold/
Xwarp.cpp 50 if (!(fp = fopen(XWARP_READY, "r"))) {
57 if (!(fp = fopen(XWARP_MIRROR_STATUS, "r"))) {
  /external/qemu/distrib/sdl-1.2.15/src/main/win32/
SDL_win32_main.c 19 # define fopen _wfopen macro
177 file = fopen(stdoutPath, TEXT("rb"));
187 file = fopen(stderrPath, TEXT("rb"));
229 stdout = fopen(stdoutPath, TEXT("w"));
231 newfp = fopen(stdoutPath, TEXT("w"));
251 stderr = fopen(stderrPath, TEXT("w"));
253 newfp = fopen(stderrPath, TEXT("w"));
  /external/quake/quake/src/WinQuake/
sys_null.cpp 72 f = fopen(path, "rb");
91 f = fopen(path, "wb");
124 f = fopen(path, "rb");
  /bionic/libc/stdio/
fopen.c 1 /* $OpenBSD: fopen.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */
43 fopen(const char *file, const char *mode) function

Completed in 4267 milliseconds

1 2 3 4 5 6 7 8 91011>>