Searched refs:dir (Results 1 - 25 of 83) sorted by relevance

1234

/bind-9.11.3/contrib/scripts/
H A Dzone-edit.sh.in11 dir=/tmp/zone-edit.$$
12 mkdir ${dir} || exit 1
13 trap "/bin/rm -rf ${dir}" 0
57 awk '$4 == "RRSIG" || $4 == "NSEC" || $4 == "NSEC3" || $4 == "NSEC3PARAM" { next; } { print; }' > ${dir}/old
59 if test -s ${dir}/old
61 ${checkzone} -q -D "$zone" ${dir}/old > ${dir}/ooo
64 if test -s ${dir}/ooo
66 cp ${dir}/ooo ${dir}/ne
[all...]
/bind-9.11.3/lib/dns/
H A Dgen-unix.h17 * the functions declared in isc/commandline.h and isc/dir.h could not
21 * The dir stuff was shrunk to fit the needs of gen.c.
50 start_directory(const char *path, isc_dir_t *dir) { argument
51 dir->handle = opendir(path);
53 if (dir->handle != NULL)
61 next_file(isc_dir_t *dir) { argument
64 dir->filename = NULL;
66 if (dir->handle != NULL) {
67 dirent = readdir(dir->handle);
69 dir
79 end_directory(isc_dir_t *dir) argument
[all...]
H A Dgen-win32.h56 * the functions declared in isc/commandline.h and isc/dir.h could not
60 * isc/commandline.c. The dir stuff was shrunk to fit the needs of gen.c.
216 start_directory(const char *path, isc_dir_t *dir) { argument
236 dir->first_file = ISC_TRUE;
238 dir->handle = FindFirstFile(pattern, &dir->find_data);
240 if (dir->handle == INVALID_HANDLE_VALUE) {
241 dir->filename = NULL;
244 dir->filename = dir
250 next_file(isc_dir_t *dir) argument
270 end_directory(isc_dir_t *dir) argument
[all...]
/bind-9.11.3/bin/tests/system/keymgr/
H A Dsetup.sh17 dir=01-ksk-inactive
18 echo I:set up $dir
19 rm -f $dir/K*.key
20 rm -f $dir/K*.private
21 ksk1=`$KEYGEN -K $dir -3fk example.com`
22 $SETTIME -K $dir -I +9mo -D +1y $ksk1 > /dev/null 2>&1
23 ksk2=`$KEYGEN -K $dir -S $ksk1`
24 $SETTIME -K $dir -I +7mo $ksk1 > /dev/null 2>&1
25 zsk1=`$KEYGEN -K $dir -3 example.com`
28 dir
[all...]
H A Dtests.sh27 for dir in [0-9][0-9]-*; do
29 echo "I:$dir ($n)"
31 . $dir/expect
35 [ -e "$dir/policy.conf" ] && policy="-c $dir/policy.conf"
38 $KEYMGR $policy -K $dir -g `cygpath -w $KEYGEN` -r $RANDFILE \
41 $KEYMGR $policy -K $dir -g $KEYGEN -r $RANDFILE \
58 $COVERAGE -K $dir $cargs > coverage.$n 2>&1
/bind-9.11.3/contrib/dlz/modules/filesystem/
H A Ddir.h28 typedef struct dir { struct
35 dir_init(dir_t *dir);
38 dir_open(dir_t *dir, const char *dirname);
41 dir_read(dir_t *dir);
44 dir_reset(dir_t *dir);
47 dir_close(dir_t *dir);
H A Ddir.c26 #include "dir.h"
29 dir_init(dir_t *dir) { argument
30 dir->entry.name[0] = '\0';
31 dir->entry.length = 0;
33 dir->handle = NULL;
37 dir_open(dir_t *dir, const char *dirname) { argument
41 if (strlen(dirname) + 3 > sizeof(dir->dirname))
43 strcpy(dir->dirname, dirname);
45 p = dir->dirname + strlen(dir
83 dir_read(dir_t *dir) argument
103 dir_close(dir_t *dir) argument
112 dir_reset(dir_t *dir) argument
[all...]
H A DMakefile8 dir.o: dir.c
9 $(CC) $(CFLAGS) -c dir.c
11 dlz_filesystem_dynamic.so: dlz_filesystem_dynamic.c dir.o
13 dlz_filesystem_dynamic.c dir.o
H A Ddlz_filesystem_dynamic.c59 #include "dir.h"
288 * path have the "data dir" directory contained within it so
296 * 0. the base dir is "/base-dir/" and the data dir is
298 * domain.com. Path /base-dir/com/domain/.datadir since
299 * /base-dir/com/domain/.datadir does not exist, we are not
302 * path /base-dir/com/domain/long/.datadir does exist!
305 /* if client is passed append xfr dir, otherwise append data dir */
338 process_dir(dir_t *dir, void *passback, config_data_t *cd, dlist_t *dir_list, unsigned int basedirlen) argument
593 dir_t dir; local
755 dir_t dir; local
[all...]
/bind-9.11.3/bin/tests/system/coverage/
H A Dsetup.sh19 dir=01-ksk-inactive
20 rm -f $dir/K*.key
21 rm -f $dir/K*.private
22 ksk1=`$KEYGEN -K $dir -3fk example.com`
23 $SETTIME -K $dir -I +9mo -D +1y $ksk1 > /dev/null 2>&1
24 ksk2=`$KEYGEN -K $dir -S $ksk1`
25 $SETTIME -K $dir -I +7mo $ksk1 > /dev/null 2>&1
26 zsk1=`$KEYGEN -K $dir -3 example.com`
29 dir=02-zsk-inactive
30 rm -f $dir/
[all...]
H A Dtests.sh29 for dir in [0-9][0-9]-*; do
31 echo "I:$dir"
33 . $dir/expect
34 $COVERAGE $args -K $dir example.com > coverage.$n 2>&1
/bind-9.11.3/lib/isc/win32/
H A Ddir.c23 #include <isc/dir.h>
32 #define VALID_DIR(dir) ISC_MAGIC_VALID(dir, ISC_DIR_MAGIC)
38 isc_dir_init(isc_dir_t *dir) { argument
39 REQUIRE(dir != NULL);
41 dir->dirname[0] = '\0';
43 dir->entry.name[0] = '\0';
44 dir->entry.length = 0;
45 memset(&(dir->entry.find_data), 0, sizeof(dir
58 isc_dir_open(isc_dir_t *dir, const char *dirname) argument
97 isc_dir_read(isc_dir_t *dir) argument
137 isc_dir_close(isc_dir_t *dir) argument
148 isc_dir_reset(isc_dir_t *dir) argument
175 start_directory(isc_dir_t *dir) argument
[all...]
/bind-9.11.3/lib/isc/unix/
H A Ddir.c21 #include <isc/dir.h>
31 #define VALID_DIR(dir) ISC_MAGIC_VALID(dir, ISC_DIR_MAGIC)
34 isc_dir_init(isc_dir_t *dir) { argument
35 REQUIRE(dir != NULL);
37 dir->entry.name[0] = '\0';
38 dir->entry.length = 0;
40 dir->handle = NULL;
42 dir->magic = ISC_DIR_MAGIC;
50 isc_dir_open(isc_dir_t *dir, cons argument
96 isc_dir_read(isc_dir_t *dir) argument
129 isc_dir_close(isc_dir_t *dir) argument
140 isc_dir_reset(isc_dir_t *dir) argument
[all...]
/bind-9.11.3/win32utils/legacy/
H A Dmakedefs.pl51 foreach $dir (@iscdirlist) {
52 createdeffile($dir, $iscprefixlist[$ind]);
59 foreach $dir (@isccfgdirlist) {
60 createdeffile($dir, $isccfgprefixlist[$ind]);
67 foreach $dir (@dnsdirlist) {
68 createdeffile($dir, $dnsprefixlist[$ind]);
75 foreach $dir (@iscccdirlist) {
76 createdeffile($dir, $iscccprefixlist[$ind]);
83 foreach $dir (@lwresdirlist) {
84 createdeffile($dir,
[all...]
/bind-9.11.3/conftools/perllib/dnsconf/
H A Dtest.pl22 $dir = $named->getdirectory();
25 if (!defined($dir)) {
28 print $dir, "\n";
/bind-9.11.3/bin/named/include/named/
H A Dgeoip.h18 void ns_geoip_load(char *dir);
/bind-9.11.3/lib/isc/unix/include/isc/
H A Ddir.h9 /* $Id: dir.h,v 1.21 2007/06/19 23:47:19 tbox Exp $ */
54 isc_dir_init(isc_dir_t *dir);
57 isc_dir_open(isc_dir_t *dir, const char *dirname);
60 isc_dir_read(isc_dir_t *dir);
63 isc_dir_reset(isc_dir_t *dir);
66 isc_dir_close(isc_dir_t *dir);
/bind-9.11.3/lib/isc/win32/include/isc/
H A Ddir.h9 /* $Id: dir.h,v 1.15 2007/06/19 23:47:20 tbox Exp $ */
43 isc_dir_init(isc_dir_t *dir);
46 isc_dir_open(isc_dir_t *dir, const char *dirname);
49 isc_dir_read(isc_dir_t *dir);
52 isc_dir_reset(isc_dir_t *dir);
55 isc_dir_close(isc_dir_t *dir);
/bind-9.11.3/contrib/idn/idnkit-1.0-src/util/
H A DMakefile27 $(PERL) $(NORM_GENERATOR) -prefix v301_ -dir $(V301_NORM_DIR) \
32 $(PERL) $(NORM_GENERATOR) -prefix v310_ -dir $(V310_NORM_DIR) \
37 $(PERL) $(NORM_GENERATOR) -prefix v320_ -dir $(V320_NORM_DIR) \
42 $(PERL) $(NAMEPREP_GENERATOR) -dir $(NAMEPREP_DIR) \
/bind-9.11.3/bin/dnssec/
H A Ddnssec-revoke.c82 char *dir = NULL; local
122 dir = isc_mem_strdup(mctx, isc_commandline_argument);
123 if (dir == NULL) {
165 if (dir != NULL) {
169 &dir, &filename);
174 if (strcmp(dir, ".") == 0) {
175 isc_mem_free(mctx, dir);
176 dir = NULL;
192 result = dst_key_fromnamedfile(filename, dir,
230 dst_key_buildfilename(key, DST_TYPE_PUBLIC, dir,
[all...]
/bind-9.11.3/unit/atf-src/atf-c/
H A Dcheck.c54 create_tmpdir(atf_fs_path_t *dir) argument
58 err = atf_fs_path_init_fmt(dir, "%s/check.XXXXXX",
63 err = atf_fs_mkdtemp(dir);
65 atf_fs_path_fini(dir);
76 cleanup_tmpdir(const atf_fs_path_t *dir, const atf_fs_path_t *outfile, argument
100 atf_error_t err = atf_fs_rmdir(dir);
297 const atf_fs_path_t *dir)
309 err = atf_fs_path_copy(&r->pimpl->m_dir, dir);
314 atf_fs_path_cstring(dir));
319 atf_fs_path_cstring(dir));
296 atf_check_result_init(atf_check_result_t *r, const char *const *argv, const atf_fs_path_t *dir) argument
459 atf_fs_path_t dir; local
[all...]
/bind-9.11.3/contrib/dlz/drivers/
H A Ddlz_filesystem_driver.c57 #include <isc/dir.h>
307 * path have the "data dir" directory contained within it so
315 * 0. the base dir is "/base-dir/" and the data dir is
317 * domain.com. Path /base-dir/com/domain/.datadir since
318 * /base-dir/com/domain/.datadir does not exist, we are not
321 * path /base-dir/com/domain/long/.datadir does exist!
324 /* if client is passed append xfr dir, otherwise append data dir */
359 process_dir(isc_dir_t *dir, void *passback, config_data_t *cd, dlist_t *dir_list, unsigned int basedirlen) argument
634 isc_dir_t dir; local
792 isc_dir_t dir; local
[all...]
/bind-9.11.3/bin/named/
H A Dgeoip.c91 ns_geoip_load(char *dir) { argument
94 UNUSED(dir);
107 if (dir != NULL) {
110 "using \"%s\" as GeoIP directory", dir);
111 GeoIP_setup_custom_directory(dir);
/bind-9.11.3/unit/atf-src/admin/
H A Ddepcomp60 # global variables '$dir'. Note that this directory component will
65 */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;;
66 *) dir=;;
305 tmpdepfile1=$dir$base.u
307 tmpdepfile3=$dir.libs/$base.u
310 tmpdepfile1=$dir$base.u
311 tmpdepfile2=$dir$base.u
312 tmpdepfile3=$dir$base.u
445 tmpdepfile1=$dir$base.d
446 tmpdepfile2=$dir
[all...]
/bind-9.11.3/util/
H A Dcheck-includes.pl188 my $dir = $1;
190 if (! /$nocomment.*\U$dir\E_R_/m) {
191 unless ($dir eq "isc" && /$nocomment.*isc_result_t/m) {
196 print "$file has <$dir/result.h> without \U$dir\E_R_\n";
233 my $dir = $1;
234 if (! /^$nocomment.*$dir\_\S+\_t\s/m) {
235 print "$file has <$dir/types.h> but apparently no $dir\_*_t uses\n";
236 } elsif ($dir n
[all...]

Completed in 185 milliseconds

1234