HomeSort by relevance Sort by last modified time
    Searched full:fopen (Results 126 - 150 of 1775) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/webrtc/src/system_wrappers/source/
data_log_unittest_disabled.cc 54 ASSERT_EQ(NULL, fopen(kDataLogFileName, "r"));
  /external/webrtc/test/testsupport/
frame_reader.cc 37 input_file_ = fopen(input_filename_.c_str(), "rb");
frame_reader_unittest.cc 34 FILE* dummy = fopen(kInputFilename.c_str(), "wb");
  /frameworks/compile/libbcc/bcinfo/Wrap/
file_wrapper_input.cpp 24 _file = fopen(name, "rb");
  /frameworks/wilhelm/tools/mphtogen/
mphtogen.c 27 FILE *fp = fopen(filename, "w");
  /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/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/quake/quake/src/WinQuake/
sys_null.cpp 72 f = fopen(path, "rb");
91 f = fopen(path, "wb");
124 f = fopen(path, "rb");
  /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/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.
283 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");
  /external/dropbear/
cli-kex.c 134 tty = fopen(_PATH_TTY, "r");
182 hostsfile = fopen(filename, "a+");
192 hostsfile = fopen(filename, "r");
  /external/icu4c/test/intltest/
ucaconf.cpp 124 testFile = fopen(buffer, "rb");
129 testFile = fopen(buffer, "rb");
134 testFile = fopen(buffer, "rb");
  /external/iproute2/ip/
ipmaddr.c 88 FILE *fp = fopen("/proc/net/dev_mcast", "r");
126 FILE *fp = fopen("/proc/net/igmp", "r");
161 FILE *fp = fopen("/proc/net/igmp6", "r");

Completed in 1383 milliseconds

1 2 3 4 56 7 8 91011>>