HomeSort by relevance Sort by last modified time
    Searched full:fopen (Results 151 - 175 of 2155) sorted by null

1 2 3 4 5 67 8 91011>>

  /system/core/libcutils/
cpu_info.c 37 file = fopen("proc/cpuinfo", "r");
  /system/core/toolbox/
df.c 53 FILE *f = fopen("/proc/mounts", "r");
umount.c 38 f = fopen("/proc/mounts", "r");
  /external/chromium_org/native_client_sdk/src/examples/demo/nacl_io/
index.html 49 <input type="radio" id="radiofopen" name="filegroup" checked="checked">fopen
61 <div class="function" id="fopen">
73 <button>fopen</button>
  /external/chromium_org/third_party/protobuf/src/google/protobuf/testing/
file.cc 67 FILE* file = fopen(name.c_str(), "rb");
86 FILE* file = fopen(name.c_str(), "wb");
88 << "fopen(" << name << ", \"wb\"): " << strerror(errno);
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
genmodule.c 85 in = fopen(inc->filename, "rt");
171 out = fopen(outfile, "wt");
181 in = fopen(argv[1], "rt");
  /external/chromium_org/third_party/zlib/contrib/minizip/
ioapi.h 16 Oct-2009 - Defined fxxxx64 calls to normal fopen/ftell/fseek so they would compile on windows.
48 #define fopen64 fopen
53 #define fopen64 fopen
  /external/clang/test/Analysis/
taint-tester.c 97 if((fp=fopen("test", "w")) == 0) // expected-warning + {{tainted}}
102 // Test fscanf and fopen.
103 if((fp=fopen("test","r")) == 0) // expected-warning + {{tainted}}
  /external/dropbear/libtomcrypt/demos/
tv_gen.c 122 out = fopen("hash_tv.txt", "w");
164 out = fopen("cipher_tv.txt", "w");
238 out = fopen("hmac_tv.txt", "w");
290 out = fopen("omac_tv.txt", "w");
345 out = fopen("pmac_tv.txt", "w");
401 out = fopen("eax_tv.txt", "w");
461 out = fopen("ocb_tv.txt", "w");
525 out = fopen("ccm_tv.txt", "w");
587 out = fopen("gcm_tv.txt", "w");
643 out = fopen("base64_tv.txt", "w")
    [all...]
  /external/protobuf/src/google/protobuf/testing/
file.cc 67 FILE* file = fopen(name.c_str(), "rb");
86 FILE* file = fopen(name.c_str(), "wb");
88 << "fopen(" << name << ", \"wb\"): " << strerror(errno);
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/
Isac_test.cc 117 if( (pInFile = fopen(inFile,"rb")) == NULL ) {
138 if( (pChcFile = fopen(chcFile,"rb")) == NULL ) {
149 if( (pOutFile = fopen(outFile,"wb")) == NULL ) {
kenny.c 154 fy = fopen("bit_rate.dat", "w");
156 fy = fopen("bytes_frames.dat", "w");
326 plFile = fopen( argv[i+1], "rb" );
346 fp_gns = fopen(gns_file, "rb");
386 f_bn = fopen(bottleneck_file, "rb");
404 * fid = fopen('bottleneck.txt', 'wb');
430 if ((inp = fopen(inname,"rb")) == NULL) {
434 if ((outp = fopen(outname,"wb")) == NULL) {
439 if ((outbits = fopen(outbitsname,"wb")) == NULL) {
450 if ( (seedfile = fopen(SEED_FILE, "a+t") ) == NULL )
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/rand/
randfile.c 96 /* This declaration is a nasty hack to get around vms' extension to fopen
99 (FILE *(*)(const char *, const char *, ...))fopen;
139 in=fopen(file,"rb");
225 * fopen() calls below, openssl/VMS now shares the top-level
243 out = fopen(file,"wb");
  /external/clang/lib/StaticAnalyzer/Checkers/
SimpleStreamChecker.cpp 10 // Defines a checker for proper use of fopen/fclose APIs.
13 // - If a file was opened with fopen, it must be closed with fclose before
75 /// Process fopen.
176 // If a symbol is NULL, assume that fopen failed on this path.
281 IIfopen = &Ctx.Idents.get("fopen");
  /external/openssl/crypto/rand/
randfile.c 96 /* This declaration is a nasty hack to get around vms' extension to fopen
99 (FILE *(*)(const char *, const char *, ...))fopen;
139 in=fopen(file,"rb");
225 * fopen() calls below, openssl/VMS now shares the top-level
243 out = fopen(file,"wb");
  /system/extras/latencytop/
latencytop.c 179 f = fopen(GLOBAL_STATS_FILE, "w");
188 f = fopen(GLOBAL_STATS_FILE, "r");
239 f = fopen(filename, "w");
253 f = fopen(GLOBAL_STATS_FILE, "r");
310 f = fopen(SYSCTL_FILE, "w");
  /hardware/qcom/audio/legacy/alsa_sound/
AudioStreamInALSA.cpp 103 //otherwise, fopen may fail.
105 mFp_4ch = fopen("/data/4ch_ssr.pcm", "wb");
107 mFp_6ch = fopen("/data/6ch_ssr.pcm", "wb");
776 if ( (flt1r = fopen(SURROUND_FILE_1R, "rb")) == NULL ) {
781 if ( (flt2r = fopen(SURROUND_FILE_2R, "rb")) == NULL ) {
786 if ( (flt3r = fopen(SURROUND_FILE_3R, "rb")) == NULL ) {
791 if ( (flt4r = fopen(SURROUND_FILE_4R, "rb")) == NULL ) {
796 if ( (flt1i = fopen(SURROUND_FILE_1I, "rb")) == NULL ) {
801 if ( (flt2i = fopen(SURROUND_FILE_2I, "rb")) == NULL ) {
806 if ( (flt3i = fopen(SURROUND_FILE_3I, "rb")) == NULL )
    [all...]
  /external/netperf/
netserver.c 180 if ((where = fopen(FileName, "w")) == NULL) {
232 where = fopen ("/dev/null", "w");
578 rd_null_fp = fopen ("/dev/null", "r");
608 wr_null_fp = fopen ("/dev/null", "w");
922 if ((where = fopen(FileName, "w")) == NULL) {
934 fopen calls will get mapped to the correct std handles. */
937 if ((where = fopen(FileName, "w")) == NULL) {
938 perror("netserver: fopen of debug file as new stdout failed!");
944 if ((where = fopen(FileName, "w")) == NULL) {
945 fprintf(stdout, "fopen of debug file as new stderr failed!\n")
    [all...]
  /external/stlport/test/unit/
fstream_test.cpp 294 should give the same effect as fopen( "test_file.txt", "a" ).
295 Problem is fopen( "test_file.txt", "a" ) has a bit different behaviour
297 After fopen( "test_file.txt", "a" ) in this context ftell( f ) == 9 for
304 The code below is intended to demonstrate ambiguity (dependance from fopen implementation).
308 //In Windows, stlport and fopen use kernel32.CreateFile for open.
312 //On UNIX flavours, stlport and fopen use unix's open
316 //stlport uses fopen here. This case may fail this test, since the file position after
317 //fopen is implementation-dependent
324 { // for reference, to test fopen/ftell behaviour in append mode:
330 FILE* f = fopen( "test_file.txt", "a" )
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
fstream_test.cpp 312 should give the same effect as fopen( "test_file.txt", "a" ).
313 Problem is fopen( "test_file.txt", "a" ) has a bit different behaviour
315 After fopen( "test_file.txt", "a" ) in this context ftell( f ) == 9 for
322 The code below is intended to demonstrate ambiguity (dependance from fopen implementation).
326 //In Windows, stlport and fopen use kernel32.CreateFile for open.
330 //On UNIX flavours, stlport and fopen use unix's open
334 //stlport uses fopen here. This case may fail this test, since the file position after
335 //fopen is implementation-dependent
342 { // for reference, to test fopen/ftell behaviour in append mode:
348 FILE* f = fopen( "test_file.txt", "a" )
    [all...]
  /ndk/tests/device/test-stlport/unit/
fstream_test.cpp 312 should give the same effect as fopen( "test_file.txt", "a" ).
313 Problem is fopen( "test_file.txt", "a" ) has a bit different behaviour
315 After fopen( "test_file.txt", "a" ) in this context ftell( f ) == 9 for
322 The code below is intended to demonstrate ambiguity (dependance from fopen implementation).
326 //In Windows, stlport and fopen use kernel32.CreateFile for open.
330 //On UNIX flavours, stlport and fopen use unix's open
334 //stlport uses fopen here. This case may fail this test, since the file position after
335 //fopen is implementation-dependent
342 { // for reference, to test fopen/ftell behaviour in append mode:
348 FILE* f = fopen( "test_file.txt", "a" )
    [all...]
  /external/libcap-ng/libcap-ng-0.7/utils/
netcap.c 112 sf = fopen(buf, "rte");
257 f = fopen(proc, "rte");
291 f = fopen(proc, "rte");
325 f = fopen(proc, "rte");
363 f = fopen("/proc/net/dev", "rte");
395 f = fopen("/proc/net/packet", "rte");
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
ml_sysfs_helper.c 95 nameFile = fopen(filename, "r");
121 if(NULL == (fp = fopen(input, "rt")) ){
287 if((fp = fopen(key_path, "rt")) == NULL)
341 nameFile = fopen(filename, "r");
360 nameFile = fopen(filename, "r");
373 nameFile = fopen(secondaryFileName, "r");
  /external/chromium_org/third_party/icu/source/test/intltest/
ucaconf.cpp 125 testFile = fopen(buffer, "rb");
130 testFile = fopen(buffer, "rb");
135 testFile = fopen(buffer, "rb");
  /external/chromium_org/v8/src/
v8utils.cc 156 FILE* file = OS::FOpen(filename, "rb");
218 FILE* f = OS::FOpen(filename, "ab");
235 FILE* f = OS::FOpen(filename, "wb");

Completed in 1528 milliseconds

1 2 3 4 5 67 8 91011>>