/frameworks/base/media/libstagefright/ |
FileSource.cpp | 23 : mFile(fopen(filename, "rb")),
|
/system/core/libcutils/ |
cpu_info.c | 37 file = fopen("proc/cpuinfo", "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/icu4c/test/intltest/ |
ucaconf.cpp | 125 testFile = fopen(buffer, "rb"); 130 testFile = fopen(buffer, "rb"); 135 testFile = fopen(buffer, "rb");
|
/external/quake/quake/src/WinQuake/ |
sys_null.cpp | 72 f = fopen(path, "rb");
91 f = fopen(path, "wb");
124 f = fopen(path, "rb");
|
sys_wind.cpp | 76 f = fopen(path, "rb");
95 f = fopen(path, "wb");
128 f = fopen(path, "rb");
|
/external/wpa_supplicant/ |
os_unix.c | 93 FILE *f = fopen(pid_file, "w"); 116 f = fopen("/dev/urandom", "rb"); 233 f = fopen(name, "rb");
|
os_internal.c | 81 FILE *f = fopen(pid_file, "w"); 104 f = fopen("/dev/urandom", "rb"); 195 f = fopen(name, "rb");
|
/external/wpa_supplicant_6/wpa_supplicant/src/utils/ |
os_unix.c | 131 FILE *f = fopen(pid_file, "w"); 155 f = fopen("/dev/urandom", "rb"); 273 f = fopen(name, "rb");
|
os_internal.c | 81 FILE *f = fopen(pid_file, "w"); 104 f = fopen("/dev/urandom", "rb"); 195 f = fopen(name, "rb");
|
/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; 136 in=fopen(file,"rb"); 217 * fopen() calls below, openssl/VMS now shares the top-level 235 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");
|
/external/openssl/crypto/bio/ |
bss_file.c | 69 /* Following definition aliases fopen to fopen64 on above mentioned 124 if ((file=fopen(filename,mode)) == NULL) 127 ERR_add_error_data(5,"fopen('",filename,"','",mode,"')"); 140 BIO_clear_flags(ret,BIO_FLAGS_UPLINK); /* we did fopen -> we disengage UPLINK */ 353 fp=fopen(ptr,p); 357 ERR_add_error_data(5,"fopen('",ptr,"','",p,"')"); 364 BIO_clear_flags(b,BIO_FLAGS_UPLINK); /* we did fopen -> we disengage UPLINK */
|
/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...] |
/external/dropbear/ |
cli-kex.c | 134 tty = fopen(_PATH_TTY, "r"); 182 hostsfile = fopen(filename, "a+"); 192 hostsfile = fopen(filename, "r");
|
/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");
|
/external/strace/ |
acinclude.m4 | 66 if ((ctl = fopen(proc, "w")) == NULL) 69 if ((status = fopen (proc, "r")) == NULL) 141 if ((pfp = fopen(proc, PROC_MODE)) == NULL)
|
/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" );
|
/bionic/libc/bionic/ |
utmp.c | 61 if ((ut = fopen(utfile, "r")) == NULL)
|
/bionic/libstdc++/include/ |
cstdio | 51 using ::fopen;
|
/development/ide/xcode/ports/ |
skia_mac.cp | 15 FILE* f = ::fopen("/whereami.txt", "w");
|
/external/dropbear/libtomcrypt/src/mac/hmac/ |
hmac_file.c | 56 in = fopen(fname, "rb");
|
/external/e2fsprogs/intl/ |
log.c | 79 last_logfile = fopen (logfilename, "a");
|