/prebuilts/misc/common/swig/include/2.0.11/perl5/ |
noembed.h | 2 * functions like fopen will not solve the problem on all platforms as fopen
|
/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. */
|
/hardware/intel/img/psb_video/fw/msvdx/ |
msvdx_bin.c | 77 ptr = fopen("msvdx_fw_mfld_DE2.0.bin", "w"); 93 ptr = fopen("unsigned_msvdx_fw.bin", "w"); 98 fp_ll_dma = fopen("linked_list_struct", "r"); 128 ptr = fopen("unsigned_msvdx_fw_56k.bin", "w"); 133 fp_ll_dma = fopen("linked_list_struct_56k", "r"); 163 ptr = fopen("unsigned_msvdx_fw_mrfl.bin", "w"); 168 fp_ll_dma = fopen("linked_list_struct_mrfld", "r"); 206 ptr = fopen("unsigned_msvdx_fw_mrfl_56k.bin", "w"); 211 fp_ll_dma = fopen("FIP_Constant_linkedlist", "r");
|
/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/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/util/ |
utility.h | 26 filePtr = fopen(fullPath, "wb"); \ 44 filePtr = fopen(fullPath, "ab"); \ 62 filePtr = fopen(fullPath, "rb"); \
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/ |
RTPcat.cc | 27 FILE* in_file = fopen(argv[1], "rb"); 33 FILE* out_file = fopen(argv[argc - 1], "wb"); // Last parameter is out file. 54 in_file = fopen(argv[i], "rb");
|
/external/libunwind/tests/ |
crasher.c | 21 FILE *maps = fopen("/proc/self/maps", "r"); 22 FILE *out = fopen(fname, "w"); 53 out = fopen(fname, "w");
|
/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/chromium_org/third_party/skia/experimental/LightSymbolsUtil/lightsymbols/ |
helper.h | 34 file = fopen(sz, "a");
|
/external/libpcap/msdos/ |
bin2c.c | 25 if ((inFile = fopen(argv[1],"rb")) == NULL)
|
/external/libsepol/utils/ |
chkcon.c | 24 fp = fopen(argv[1], "r");
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
sysfs.c | 47 fp = fopen("/proc/mounts", "r");
|
/external/skia/experimental/LightSymbolsUtil/lightsymbols/ |
helper.h | 34 file = fopen(sz, "a");
|
/external/strace/test/ |
procpollable.c | 23 pfp = fopen(proc, "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/x86_64-linux-glibc2.11-4.6/sysroot/usr/lib32/ |
libXau.so.6 | |
libXau.so.6.0.0 | |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/lib32/ |
libXau.so.6 | |
libXau.so.6.0.0 | |
/bionic/benchmarks/ |
stdio_benchmark.cpp | 30 FILE* fp = fopen("/dev/zero", "rw"); 48 FILE* fp = fopen("/dev/zero", "rw");
|
/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/third_party/libyuv/util/ |
compare.cc | 28 FILE* fin1 = fopen(name1, "rb"); 29 FILE* fin2 = name2 ? fopen(name2, "rb") : NULL;
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/ |
audio_classifier_unittest.cc | 45 FILE* audio_file = fopen(audio_filename.c_str(), "rb"); 48 FILE* data_file = fopen(data_filename.c_str(), "rb");
|