HomeSort by relevance Sort by last modified time
    Searched full:fopen (Results 251 - 275 of 2610) sorted by null

<<11121314151617181920>>

  /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");
  /hardware/qcom/display/msm8084/libqdutils/
mdp_version.cpp 140 displayDeviceFP = fopen("/sys/class/graphics/fb0/msm_fb_type", "r");
161 panelInfoNodeFP = fopen("/sys/class/graphics/fb0/msm_fb_panel_info", "r");
236 sysfsFd = fopen(sysfsPath, "rb");
310 sysfsFd = fopen(sysfsPath, "rb");
344 FILE* fp = fopen("/sys/class/graphics/fb0/msm_fb_split", "r");
  /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/chromium_org/native_client_sdk/doc_generated/devguide/coding/
nacl_io.html 33 standard POSIX I/O function such as <code>fopen</code>, <code>fseek</code>, <code>fread</code>,
104 <li>select the fopen command (when you select a command the fields in the line
107 <li>check the write checkbox and press the fopen button</li>
113 <li>select the fopen command</li>
115 <li>check the fread checkbox and press the fopen button</li>
177 browser. There is a separate <code>Handle*</code> function for each command: fopen,
  /external/fio/
iolog.c 449 f = fopen(td->o.read_iolog_file, "r");
451 perror("fopen read iolog");
487 f = fopen(td->o.write_iolog_file, "a");
489 perror("fopen write iolog");
586 f = fopen(name, "a");
588 perror("fopen log");
  /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/wpa_supplicant_8/hs20/client/
est.c 63 FILE *f = fopen(der_file, "wb");
366 FILE *f = fopen(key_pem, "wb");
390 f = fopen(old_cert, "r");
473 FILE *f = fopen(csr_pem, "w");
514 f = fopen(est_req, "w");
676 f = fopen("Cert/est-resp.raw", "w");
  /hardware/invensense/6515/libsensors_iio/software/core/mllite/linux/
ml_sysfs_helper.c 102 nameFile = fopen(filename, "r");
128 if(NULL == (fp = fopen(input, "rt")) ){
294 if((fp = fopen(key_path, "rt")) == NULL)
348 nameFile = fopen(filename, "r");
367 nameFile = fopen(filename, "r");
380 nameFile = fopen(secondaryFileName, "r");
  /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");
  /bionic/tests/
dlfcn_test.cpp 192 FILE* fp = fopen("/proc/self/maps", "r");
266 void* addr = dlsym(RTLD_DEFAULT, "fopen");
276 void* addr = dlsym(RTLD_NEXT, "fopen");
  /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/icu/icu4c/source/test/intltest/
ucaconf.cpp 126 testFile = fopen(buffer, "rb");
131 testFile = fopen(buffer, "rb");
136 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");
164 FILE *fp = fopen("/proc/net/igmp6", "r");
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
cpumap.c 103 onlnf = fopen("/sys/devices/system/cpu/online", "r");
227 fp = fopen(path, "r");
290 fp = fopen(path, "r");
  /system/core/toolbox/
vmstat.c 162 f = fopen("/proc/meminfo", "r");
180 f = fopen("/proc/stat", "r");
203 f = fopen("/proc/vmstat", "r");
  /system/extras/tests/bionic/libc/other/
test_zlib.c 220 FILE* f = fopen(argv[1], "rb");
235 out = fopen( tempfile, "wb" );
253 f = fopen( tempfile, "rb" );

Completed in 1334 milliseconds

<<11121314151617181920>>