Searched refs:open (Results 1 - 25 of 43) sorted by relevance

12

/bind-9.11.3/util/
H A Dupdate_branches12 # Track which branches are still open or not in the bind9 cvs repository.
45 open(BRANCHES, "<doc/private/branches") || die "can't open util/branches: $!";
81 open(HISTORY, "cvs history -T -a 2> /dev/null |") || die("can't get history");
110 open(FILES, "find $repository/$module -type f -name *,v -print |") || die "can't start find: $!";
122 open(FILE, "cvs -d $repository rlog -h $_|") || die "can't start cvs rlog -h $_: $!";
153 open(BRANCHES, ">doc/private/newbranches") || die "can't open doc/private/branches: $!";
H A Dmerge_copyrights17 open(COPYRIGHTS, "<util/copyrights") || die "can't open ./util/copyrights: $!";
30 open(FILES, "git ls-files | sed 's;^;./;' |") || die "git ls-files: $!";
37 open(CHANGES, "sh util/recent_changes.sh |") || die "recent_changes.sh: $!";
74 if (open(PYTHON, $_)) {
175 open(NEWCOPYRIGHTS, ">util/newcopyrights") ||
176 die "can't open newcopyrights: $!";
H A Dupdate_copyrights37 open(COPYRIGHT, "<$f") || die "can't open $f: $!";
133 open(SOURCE, "<$file") || die "can't open $file: $!";
150 open(TARGET, ">$file.new") || die "can't open $file.new: $!";
223 open(SOURCE, "<$file") || die "can't open $file: $!";
419 open(TARGET, ">$file.new") || die "can't open
[all...]
/bind-9.11.3/contrib/scripts/
H A Dcheck-secure-delegation.pl.in37 open(DS, "$dig -t DS -q $zone|") || die("dig DS failed");
53 open(DNSKEY, "$dig -t DNSKEY -q $zone|") || die("dig DNSKEY failed");
/bind-9.11.3/unit/atf-src/atf-c/
H A Dutils.c104 const int fd = open(name, O_RDONLY);
105 ATF_REQUIRE_MSG(fd != -1, "Cannot open %s", name);
145 const int fd = open(name, O_RDONLY);
146 ATF_REQUIRE_MSG(fd != -1, "Cannot open %s", name);
173 const int input = open(source, O_RDONLY);
174 ATF_REQUIRE_MSG(input != -1, "Failed to open source file during "
177 const int output = open(destination, O_WRONLY | O_CREAT | O_TRUNC, 0777);
178 ATF_REQUIRE_MSG(output != -1, "Failed to open destination file during "
216 const int fd = open(name, O_WRONLY | O_CREAT | O_TRUNC, 0644);
309 ATF_REQUIRE((fd = open(fil
[all...]
H A Dutils_test.c58 const int fd = open(path, O_RDONLY);
59 ATF_REQUIRE_MSG(fd != -1, "Cannot open %s", path);
314 const int fd = open("empty.txt", O_RDONLY);
329 const int fd = open("test.txt", O_RDONLY);
H A Dcheck_test.c320 int fd = open(path, O_RDONLY);
439 int fd = open(path, O_RDONLY); \
/bind-9.11.3/win32utils/
H A DConfigure811 open V, "..\\version" || die $!;
1361 open F, ">mscver.c" || die $!;
1430 open F, ">cross.c" || die $!;
1455 open F, ">cross.c" || die $!;
1733 open F, ">testossl.c" || die $!;
1763 open F, ">testosslv.c" || die $!;
1800 open F, ">testfips.c" || die $!;
1827 open F, ">testsha256.c" || die $!;
1861 open F, ">testsha384.c" || die $!;
1894 open
[all...]
/bind-9.11.3/bin/named/include/named/
H A Dseccomp.h28 SCMP_SYS(open),
95 "open",
164 SCMP_SYS(open),
204 "open",
/bind-9.11.3/bin/tests/system/rndc/
H A Dgencheck.c61 fd = open(argv[1], O_RDONLY);
/bind-9.11.3/bin/named/win32/
H A Dos.c139 devnullfd = open("NUL", O_RDWR, 0);
191 fd = open(filename, O_WRONLY|O_CREAT|O_APPEND, mode);
194 fd = open(filename, O_WRONLY|O_CREAT|O_EXCL, mode);
234 ns_main_earlywarning("could not open file '%s': %s",
322 lockfilefd = open(filename, O_WRONLY | O_CREAT,
/bind-9.11.3/lib/isc/unix/
H A Dkeyboard.c36 fd = open("/dev/tty", O_RDONLY, 0);
H A Dfile.c338 while ((fd = open(templet, O_RDWR|O_CREAT|O_EXCL, mode)) == -1) {
603 fd = open(filename, flags, S_IRUSR | S_IWUSR);
/bind-9.11.3/contrib/dnsperf-2.1.0.0-1/contrib/queryparse/
H A Dqueryparse53 outfile = open(opts.fout, "w")
/bind-9.11.3/contrib/queryperf/utils/
H A Dgen-data-queryperf.py95 file = open(zone_file)
/bind-9.11.3/lib/isc/win32/
H A Dfile.c41 * Emulate UNIX mkstemp, which returns an open FD to the new file
85 open(path, flags, _S_IREAD | _S_IWRITE)) >= 0)
248 if ((fh = open(file, _O_RDONLY | _O_BINARY)) < 0)
286 if ((fh = open(file, _O_RDWR | _O_BINARY)) < 0)
647 if ((fh = open(filename, _O_RDWR | _O_BINARY)) < 0)
680 fd = open(filename, flags, S_IRUSR | S_IWUSR);
/bind-9.11.3/contrib/sdb/bdb/
H A Dzone2bdb.c55 REQUIRE(db->open(db, file, NULL, DB_HASH, DB_CREATE | DB_EXCL, 0) == 0);
H A Dbdb.c88 if ((ret = (*(DB **)dbdata)->open(*(DB **)dbdata, *argv, NULL, DB_HASH,
93 ISC_MSG_FATALERROR, "DB->open: %s",
/bind-9.11.3/bin/named/unix/
H A Dos.c482 devnullfd = open("/dev/null", O_RDWR, 0);
618 * Linux: max number of open files specified by one thread doesn't seem
625 ns_main_earlywarning("couldn't adjust limit on open files");
658 fd = open(filename, O_WRONLY|O_CREAT|O_APPEND, mode);
662 fd = open(filename, O_WRONLY|O_CREAT|O_EXCL, mode);
837 "permissions to open "
840 ns_main_earlywarning("Could not open "
847 ns_main_earlywarning("Could not open "
860 ns_main_earlywarning("could not open file '%s': %s",
958 singletonfd = open(filenam
[all...]
/bind-9.11.3/unit/atf-src/tools/
H A Dio_test.cpp99 int fd = ::open("test_read.txt", O_RDONLY);
114 int fd = ::open("test_write.txt", O_WRONLY | O_CREAT | O_TRUNC,
H A Dprocess.cpp343 const int aux = ::open(m_path.c_str(), O_WRONLY | O_CREAT | O_TRUNC, 0644);
/bind-9.11.3/unit/atf-src/atf-c/detail/
H A Dprocess_test.c190 s->m_fd = open("stdout", O_WRONLY | O_CREAT | O_TRUNC, 0644);
194 s->m_fd = open("stderr", O_WRONLY | O_CREAT | O_TRUNC, 0644);
258 ATF_REQUIRE_EQ(open(name, O_WRONLY | O_CREAT | O_TRUNC, 0644),
319 s->m_fd = open("stdout", O_WRONLY | O_CREAT | O_TRUNC, 0644);
322 s->m_fd = open("stderr", O_WRONLY | O_CREAT | O_TRUNC, 0644);
935 int fd = open("stdout", O_RDONLY);
/bind-9.11.3/lib/dns/tests/
H A Drbt_serialize_test.c319 fd = open("zone.bin", O_RDWR);
384 fd = open("zone.bin", O_RDWR);
/bind-9.11.3/
H A Dconfig.h.win32160 /* open() under unix allows setting of read/write permissions
251 #define open _open
/bind-9.11.3/contrib/dnsperf-2.1.0.0-1/
H A Ddatafile.c83 dfile->fd = open(filename, O_RDONLY);
85 perf_log_fatal("unable to open file: %s", filename);

Completed in 44 milliseconds

12