/src/tests/lib/libc/gen/posix_spawn/ |
fa_spawn_utils.c | 60 REQUIRE_LIBC(f = fopen(fname, "w"), NULL);
|
/src/tests/lib/libc/stdio/ |
t_fopen.c | 47 static const char *path = "fopen"; 155 atf_tc_set_md_var(tc, "descr", "Test errors from fopen(3)"); 167 f = fopen(path, "w+"); 180 f = fopen(path, mode[i]); 195 ATF_REQUIRE_ERRNO(EISDIR, fopen("/usr/bin", "w") == NULL); 198 ATF_REQUIRE_ERRNO(ENOENT, fopen("/a/b/c/d/e/f", "r") == NULL); 201 ATF_REQUIRE_ERRNO(ENAMETOOLONG, fopen(buf, "r+") == NULL); 222 f = fopen(path, "w+"); 228 f = fopen(path, "a"); 233 f = fopen(path, "r") [all...] |
t_fflush.c | 51 f = fopen(path, "w"); 57 f = fopen(path, "r"); 105 f = fopen(path, "w"); 111 f = fopen(path, "r+"); 148 f = fopen(path, "w");
|
t_clearerr.c | 49 fp = fopen(path, "r"); 75 fp = fopen(path, "r");
|
t_fputc.c | 49 f = fopen(path, "w+"); 67 f = fopen(path, "w+"); 77 f = fopen(path, "r");
|
/src/distrib/utils/sparkcrc/ |
sparkcrc.c | 93 if (!(fds = fopen(argv[1], "r")))
|
/src/games/phantasia/ |
setup.c | 47 / MODULES CALLED: time(), exit(), stat(), Error(), creat(), close(), fopen(), 130 if ((fp = fopen(path, "w")) == NULL) 136 if ((Monstfp = fopen(path, "w")) == NULL) 140 if ((fp = fopen(monsterfile, "r")) == NULL) 180 if ((fp = fopen(path, "w")) == NULL)
|
/src/sbin/mount_portal/examples/ |
fing.c | 20 fp = fopen(fingerpath, "r+");
|
/src/sys/external/bsd/compiler_rt/dist/test/profile/ |
instrprof-without-libc.c | 41 FILE *File = fopen(argv[1], "w");
|
/src/sys/modules/examples/readhappy_mpsafe/ |
test_readhappy.c | 74 fp = fopen("/dev/happy_mpsafe","r");
|
/src/usr.bin/msgc/ |
msgmain.c | 81 yyin = fopen (src_name, "r");
|
msgdb.c | 124 sys_file = fopen (sname, "r"); 132 out_file = fopen (hname, "w"); 217 out_file = fopen (cname, "w");
|
/src/sys/external/bsd/acpica/dist/tools/efihello/ |
efihello.c | 195 File = fopen (argv[1], "r");
|
/src/sys/arch/ews4800mips/stand/common/ |
inckern.c | 59 (ifd = fopen(optarg, "r")) == 0) 63 if ((optarg == 0) || (ofd = fopen(optarg, "w")) == 0)
|
/src/sys/external/isc/libsodium/dist/test/default/ |
cmptest.h | 92 if ((fp_res = fopen(TEST_NAME_RES, "w+")) == NULL) { 93 perror("fopen(" TEST_NAME_RES ")"); 103 if ((fp_out = fopen(TEST_NAME_OUT, "r")) == NULL) { 104 perror("fopen(" TEST_NAME_OUT ")");
|
/src/usr.bin/at/ |
perm.c | 101 fp = fopen(_PATH_AT_ALLOW, "r"); 110 fp = fopen(_PATH_AT_DENY, "r");
|
/src/sys/external/bsd/acpica/dist/tools/acpixtract/ |
acpixtract.c | 193 InputFile = fopen (InputPathname, "r"); 300 OutputFile = fopen (Gbl_OutputFilename, "w+b"); 413 InputFile = fopen (InputPathname, "r"); 428 OutputFile = fopen (Gbl_OutputFilename, "w+b"); 572 InputFile = fopen (InputPathname, "r");
|
/src/share/examples/refuse/ian/libfetch/ |
file.c | 52 f = fopen(u->doc, "r"); 77 f = fopen(u->doc, "a"); 79 f = fopen(u->doc, "w+");
|
/src/sys/external/bsd/acpica/dist/tools/acpidump/ |
apfiles.c | 233 File = fopen (Pathname, "w"); 314 File = fopen (Filename, "wb"); 360 File = fopen (Pathname, "rb");
|
/src/bin/setfacl/ |
file.c | 64 file = fopen(filename, "r"); 66 err(1, "fopen() %s failed", filename);
|
/src/games/hangman/ |
setup.c | 71 if ((Dict = fopen(Dict_name, "r")) == NULL) { 73 err(1, "fopen %s", Dict_name);
|
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/standalone/ |
StandaloneFuzzTargetMain.c | 29 FILE *f = fopen(argv[i], "r");
|
/src/tests/net/if_tap/ |
rump_open_tap.c | 60 fp = fopen(argv[2], "w"); 62 err(EXIT_FAILURE, "fopen: %s", argv[2]);
|
/src/usr.sbin/gspa/gspa/ |
gspa.c | 131 if ((infile = fopen(in_name, "r")) == NULL) 132 err(1, "fopen"); 156 else if ((objfile = fopen(hex_name, "w")) == NULL) 157 err(1, "fopen"); 168 if ((listfile = fopen(list_name, "w")) == NULL) 169 err(1, "fopen"); 216 f = fopen(fn, "r");
|
/src/usr.bin/xlint/common/ |
emit.c | 56 if ((output_file = fopen(name, "w")) == NULL)
|