HomeSort by relevance Sort by last modified time
    Searched refs:fopen (Results 201 - 225 of 2098) sorted by null

1 2 3 4 5 6 7 891011>>

  /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");
  /prebuilts/go/darwin-x86/misc/cgo/test/
basic.go 108 f, err := C.fopen(p, m)
113 t.Fatalf("C.fopen: should fail")
116 t.Fatalf("C.fopen: unexpected error: %v", err)
  /prebuilts/go/linux-x86/misc/cgo/test/
basic.go 108 f, err := C.fopen(p, m)
113 t.Fatalf("C.fopen: should fail")
116 t.Fatalf("C.fopen: unexpected error: %v", err)
  /system/core/libunwindstack/tools/
unwind_for_offline.cpp 70 std::unique_ptr<FILE, decltype(&fclose)> fp(fopen("regs.txt", "w+"), &fclose);
103 std::unique_ptr<FILE, decltype(&fclose)> fp(fopen(file_name.c_str(), "w+"), &fclose);
142 std::unique_ptr<FILE, decltype(&fclose)> output(fopen(cur_name.c_str(), "w+"), &fclose);
161 std::unique_ptr<FILE, decltype(&fclose)> fp(fopen(info->name.c_str(), "r"), &fclose);
167 std::unique_ptr<FILE, decltype(&fclose)> output(fopen(cur_name.c_str(), "w+"), &fclose);
266 std::unique_ptr<FILE, decltype(&fclose)> fp(fopen("maps.txt", "w+"), &fclose);
  /device/google/contexthub/lib/nanohub/
nanoapp.c 48 FILE *f = fopen(fileName, "rb");
70 FILE *f = fopen(fileName, "rb");
  /device/linaro/bootloader/edk2/BeagleBoardPkg/Tools/
replace.c 65 In = fopen (argv[1], "r");
75 Out = fopen (argv[2], "w+");
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/ModifyInf/
ModifyInf.c 317 fpin = fopen (argv[1], "rb");
323 fpout = fopen (argv[2], "wb");
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
gethostbyht.c 95 hostf = fopen(_PATH_HOSTS, "r" );
117 if (!hostf && ( NULL == (hostf = fopen(_PATH_HOSTS, "r" )))) {
getnetbyht.c 72 netf = fopen(_PATH_NETWORKS, "r" );
95 if (netf == NULL && (netf = fopen(_PATH_NETWORKS, "r" )) == NULL)
  /external/bzip2/
dlltest.c 124 if((fp_w = fopen(fn_w,"wb"))==NULL){
147 if((fp_r = fopen(fn_r,"rb"))==NULL){
  /external/curl/src/
tool_cb_wrt.c 47 file = fopen(outs->filename, "rb");
57 file = fopen(outs->filename, "wb");
  /external/iproute2/lib/
fs.c 41 fp = fopen("/proc/mounts", "r");
155 fp = fopen(path, "r");
  /external/iptables/iptables/
getethertype.c 59 etherf = fopen(_PATH_ETHERTYPES, "r");
81 && (etherf = fopen(_PATH_ETHERTYPES, "r")) == NULL) {
  /external/libjpeg-turbo/
example.c 111 * VERY IMPORTANT: use "b" option to fopen() if you are on a machine that
114 if ((outfile = fopen(filename, "wb")) == NULL) {
302 * VERY IMPORTANT: use "b" option to fopen() if you are on a machine that
306 if ((infile = fopen(filename, "rb")) == NULL) {
  /external/libopus/doc/
trivial_example.c 88 fin = fopen(inFile, "r");
104 fout = fopen(outFile, "w");
  /external/libpng/contrib/examples/
iccfrompng.c 94 FILE *fp = fopen(filename, "rb");
124 of = fopen(output, "wb");
  /external/libvncserver/common/
vncauth.c 79 if ((fp = fopen(fname,"w")) == NULL) return 1;
124 if ((fp = fopen(fname,"r")) == NULL) {
  /external/libvpx/libvpx/examples/
resize_util.c 77 fpin = fopen(fin, "rb");
83 fpout = fopen(fout, "wb");
  /external/libvpx/libvpx/
vpxstats.c 24 stats->file = fopen(fpf, "wb");
31 stats->file = fopen(fpf, "rb");
  /external/ltp/testcases/kernel/sched/hyperthreading/ht_interrupt/
ht_interrupt.c 40 if ((pFile = fopen(INTERRUPT_NAME, "r")) == NULL) {
56 if ((pFile = fopen(INTERRUPT_NAME, "r")) == NULL) {
  /external/ltp/testcases/kernel/syscalls/fork/
fork07.c 97 writ = fopen(fnamebuf, "w");
99 tst_resm(TFAIL | TERRNO, "fopen(.. \"w\") failed");
100 rea = fopen(fnamebuf, "r");
102 tst_resm(TFAIL | TERRNO, "fopen(.. \"r\") failed");
fork09.c 99 fildeses[nfiles] = fopen(filname, "a");
127 fildeses[nfiles] = fopen(childfile, "a");
  /external/python/cpython3/Programs/
_freeze_importlib.c 52 infile = fopen(inpath, "rb");
110 outfile = fopen(outpath, "w");
  /external/selinux/libselinux/src/
init.c 64 fp = fopen("/proc/filesystems", "re");
104 fp = fopen("/proc/mounts", "re");
  /external/selinux/libsepol/tests/
test-downgrade.c 210 if ((in_fp = fopen(path, "rb")) == NULL) {
256 if ((out_fp = fopen(path, "w" )) == NULL) {

Completed in 610 milliseconds

1 2 3 4 5 6 7 891011>>