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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Analysis/
simple-stream-checks.c 6 FILE *F = fopen("myfile.txt", "w");
8 fputs ("fopen example", F);
18 FILE *F = fopen("myfile.txt", "w");
20 fputs ("fopen example", F);
30 FILE *F = fopen("myfile.txt", "w");
32 fputs ("fopen example", F);
40 FILE *F = fopen("myfile.txt", "w");
47 FILE *F = fopen("myfile.txt", "w");
51 FILE *F = fopen("myfile.txt", "w");
56 FILE *F = fopen("myfile.txt", "w")
    [all...]
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 9 void fopen(); // stream checker
19 E.fopen();
  /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.
28 /* Like fopen, but do not return stdin, stdout, or stderr. */
33 FILE *fp = fopen (file, mode);
  /external/compiler-rt/lib/tsan/lit_tests/
user_fopen.cc 9 extern "C" FILE *fopen(const char *file, const char *mode) { function
12 printf("user fopen\n");
24 FILE *f = fopen("/dev/zero", "r");
32 // CHECK: user 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+")))
  /external/clang/test/Analysis/Inputs/
system-header-simulator-for-simple-stream.h 11 FILE *fopen(const char * restrict, const char * restrict) __asm("_" "fopen" );
  /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");
  /device/asus/flo/conn_init/
conn_init.c 33 fp = fopen("/persist/wifi/.macaddr", "r");
  /device/lge/mako/conn_init/
conn_init.c 33 fp = fopen("/persist/wifi/.macaddr", "r");
  /external/compiler-rt/SDKs/linux/usr/include/
stdio.h 35 extern FILE *fopen(const char * restrict, const char * restrict);
  /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/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/ceres-solver/internal/ceres/
file.cc 42 FILE* file_descriptor = fopen(filename.c_str(), "wb");
51 FILE* file_descriptor = fopen(filename.c_str(), "r");
  /external/dhcpcd/
duid.c 56 if ((f = fopen(DUID, "r"))) {
74 if (!(f = fopen(DUID, "w")))
  /external/libvpx/libvpx/examples/
decoder_tmpl.c 60 if(!(infile = fopen(argv[1], "rb")))
62 if(!(outfile = fopen(argv[2], "wb")))

Completed in 1080 milliseconds

1 2 3 4 5 6 7 8 91011>>