HomeSort by relevance Sort by last modified time
    Searched full:fopen (Results 1 - 25 of 1775) 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/m4/
fopen.m4 0 # fopen.m4 serial 9
13 dnl Replace fopen, for handling of "/dev/null".
15 dnl fopen on mingw also has the trailing slash bug.
19 dnl fopen("foo/", "w") should not create a file when the file name has a
21 AC_CACHE_CHECK([whether fopen recognizes a trailing slash],
30 return fopen ("conftest.sl/", "w") != NULL;
51 [Define to 1 if fopen() fails to recognize a trailing slash.])
57 # Prerequisites of lib/fopen.c.
  /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/llvm/test/CodeGen/PowerPC/
2009-01-16-DeclareISelBug.ll 8 %0 = call i8* @fopen(i8* getelementptr ([13 x i8]* @"\01LC", i32 0, i32 0), i8* null) nounwind ; <i8*> [#uses=0]
12 declare i8* @fopen(i8*, i8*)
  /external/valgrind/main/none/tests/
threadederrno.c 10 FILE* f = fopen("bogus2", "r");
17 FILE* f = fopen("bogus3", "r");
29 f = fopen("bogus", "r");
  /external/clang/test/Analysis/Inputs/
system-header-simulator-for-simple-stream.h 11 FILE *fopen(const char * restrict, const char * restrict) __asm("_" "fopen" );
  /external/llvm/test/Transforms/SimplifyLibCalls/
2009-01-04-Annotate.ll 3 ; CHECK: declare noalias i8* @fopen(i8* nocapture, i8* nocapture) #0
4 declare i8* @fopen(i8*, i8*)
2009-07-28-Exit.ll 16 %call393 = call %struct.__sFILE* @fopen(i8* undef, i8* %cond392) nounwind ; <%struct.__sFILE*> [#uses=0]
20 declare %struct.__sFILE* @fopen(i8*, i8*)
  /external/oprofile/libutil/
op_lockfile.c 27 fp = fopen(file, "r");
61 fp = fopen(file, "w");
  /external/bison/lib/
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);
stdio--.h 24 # undef fopen macro
25 # define fopen fopen_safer macro
fopen.c 25 /* Get the original definition of fopen. It might be defined as a macro. */
32 return fopen (filename, mode);
67 requires write access is specified, fopen() must fail because POSIX
68 <http://www.opengroup.org/susv3/functions/fopen.html> says that it
71 fopen() must fail since the file does not contain a '.' directory. */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/esound/
libesddsp.so.0 
libesddsp.so.0.2.38 
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/lib/esound/
libesddsp.so.0 
libesddsp.so.0.2.38 
  /external/openssl/crypto/bio/
bio_lcl.h 16 #define UP_fopen fopen
  /external/webkit/Source/ThirdParty/ANGLE/src/common/
debug.cpp 29 FILE *file = fopen(TRACE_OUTPUT_FILE, "a");
  /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+");
  /dalvik/tests/023-many-interfaces/
iface-gen.c 20 fp = fopen(nameBuf, "w");
33 fp = fopen("func-decl", "w");
  /external/blktrace/
verify_blkparse.c 26 f = fopen(argv[1], "r");
28 perror("fopen");
  /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/expat/xmlwf/
xmltchar.h 23 #define tfopen fopen

Completed in 663 milliseconds

1 2 3 4 5 6 7 8 91011>>