/external/llvm/test/Transforms/FunctionAttrs/ |
annotate-1.ll | 4 declare i8* @fopen(i8*, i8*) 5 ; CHECK: declare noalias i8* @fopen(i8* nocapture readonly, i8* nocapture readonly) [[G0:#[0-9]]]
|
/external/bison/lib/ |
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. */
|
/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/chromium_org/third_party/sfntly/cpp/src/sample/subsetter/ |
subset_util.cc | 17 // Remove VC++ nag on fopen. 46 FILE* input_file = fopen(input_file_path, "rb"); 92 FILE* output_file = fopen(output_file_path, "wb");
|
/external/sfntly/cpp/src/sample/subsetter/ |
subset_util.cc | 17 // Remove VC++ nag on fopen. 46 FILE* input_file = fopen(input_file_path, "rb"); 92 FILE* output_file = fopen(output_file_path, "wb");
|
/external/libsepol/utils/ |
chkcon.c | 24 fp = fopen(argv[1], "r");
|
/external/webrtc/src/system_wrappers/source/ |
file_impl.cc | 160 tmpId = fopen(fileNameUTF8, "rt"); 162 tmpId = fopen(fileNameUTF8, "wt"); 167 tmpId = fopen(fileNameUTF8, "rb"); 169 tmpId = fopen(fileNameUTF8, "wb");
|
/hardware/akm/AK8975_FS/akmdfs/ |
AKFS_FileIO.c | 50 if ((fp = fopen(path, "r")) == NULL) { 51 AKMERROR_STR("fopen"); 109 if ((fp = fopen(path, "w")) == NULL) { 110 AKMERROR_STR("fopen");
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/ |
libXau.so.6 | |
libXau.so.6.0 | |
libXau.so.6.0.0 | |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/lib/ |
libXau.so.6 | |
libXau.so.6.0 | |
libXau.so.6.0.0 | |
/system/extras/fatblock/ |
fatblock.c | 87 file = fopen(filename, "w"); 89 WARN("setting USB mass storage file: fopen(%s) failed: %s\n", 110 file = fopen(filename, "w"); 112 WARN("clearing USB mass storage file: fopen(%s) failed: %s\n",
|
/bionic/libc/bionic/ |
pututline.c | 39 if (!(f = fopen(_PATH_UTMP, "w+"))) 58 if (!(f = fopen(_PATH_UTMP, "w+")))
|
/external/bsdiff/ |
bspatch.c | 76 if ((f = fopen(argv[3], "r")) == NULL) 77 err(1, "fopen(%s)", argv[3]); 114 if ((cpf = fopen(argv[3], "r")) == NULL) 115 err(1, "fopen(%s)", argv[3]); 121 if ((dpf = fopen(argv[3], "r")) == NULL) 122 err(1, "fopen(%s)", argv[3]); 128 if ((epf = fopen(argv[3], "r")) == NULL) 129 err(1, "fopen(%s)", argv[3]);
|
/external/chromium_org/content/shell/browser/ |
shell_net_log.cc | 42 // Much like logging.h, bypass threading restrictions by using fopen 52 file = fopen(log_path.value().c_str(), "w");
|
/external/libyuv/files/util/ |
compare.cc | 28 FILE* fin1 = fopen(name1, "rb"); 29 FILE* fin2 = name2 ? fopen(name2, "rb") : NULL;
|
/external/webrtc/src/modules/audio_processing/test/ |
unpack.cc | 79 FILE* debug_file = fopen(argv[1], "rb"); 84 FILE* input_file = fopen(FLAGS_input_file.c_str(), "wb"); 89 FILE* output_file = fopen(FLAGS_output_file.c_str(), "wb"); 94 FILE* reverse_file = fopen(FLAGS_reverse_file.c_str(), "wb"); 99 FILE* settings_file = fopen(FLAGS_settings_file.c_str(), "wb"); 109 delay_file = fopen(FLAGS_delay_file.c_str(), "wb"); 114 drift_file = fopen(FLAGS_drift_file.c_str(), "wb"); 119 level_file = fopen(FLAGS_level_file.c_str(), "wb");
|
/system/core/libzipfile/ |
test_zipfile.c | 34 f = fopen(argv[1], "r");
70 f = fopen(argv[4], "w");
|
/system/vold/ |
Xwarp.cpp | 50 if (!(fp = fopen(XWARP_READY, "r"))) { 57 if (!(fp = fopen(XWARP_MIRROR_STATUS, "r"))) {
|
/external/qemu/distrib/sdl-1.2.15/src/main/win32/ |
SDL_win32_main.c | 19 # define fopen _wfopen macro 177 file = fopen(stdoutPath, TEXT("rb")); 187 file = fopen(stderrPath, TEXT("rb")); 229 stdout = fopen(stdoutPath, TEXT("w")); 231 newfp = fopen(stdoutPath, TEXT("w")); 251 stderr = fopen(stderrPath, TEXT("w")); 253 newfp = fopen(stderrPath, TEXT("w"));
|
/external/chromium_org/third_party/icu/source/tools/toolutil/ |
filestrm.c | 34 FILE *file = fopen(filename, mode); 65 result = fopen(fn, md); 82 FILE* temp = fopen(filename, "r");
|
/external/icu4c/tools/toolutil/ |
filestrm.c | 34 FILE *file = fopen(filename, mode); 65 result = fopen(fn, md); 82 FILE* temp = fopen(filename, "r");
|