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

1234

/bind-9.6-ESV-R11/unit/atf-src/test-programs/
H A DMakefile.am.inc52 dst="test-programs/sh_helpers"; $(BUILD_SH_TP)
60 dst="test-programs/config_test"; $(BUILD_SH_TP)
68 dst="test-programs/expect_test"; $(BUILD_SH_TP)
76 dst="test-programs/meta_data_test"; $(BUILD_SH_TP)
84 dst="test-programs/result_test"; $(BUILD_SH_TP)
92 dst="test-programs/srcdir_test"; $(BUILD_SH_TP)
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/
H A Dinstall-sh54 dst=""
100 dst=$1
116 dst=$src
119 if [ -d $dst ]; then
138 if [ x"$dst" = x ]
149 if [ -d $dst ]
151 dst="$dst"/`basename $src`
158 dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
194 $doit $instcmd $dst
[all...]
/bind-9.6-ESV-R11/contrib/nslint-2.1a3/
H A Dinstall-sh54 dst=""
100 dst=$1
116 dst=$src
119 if [ -d $dst ]; then
138 if [ x"$dst" = x ]
149 if [ -d $dst ]
151 dst="$dst"/`basename $src`
158 dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
194 $doit $instcmd $dst
[all...]
/bind-9.6-ESV-R11/contrib/query-loc-0.4.0/
H A Dinstall-sh68 dst=
175 dst=$src
178 if test -d "$dst"; then
198 dst=$dstarg
200 case $dst in
201 -*) dst=./$dst ;;
206 if test -d "$dst"; then
211 dst=$dst/`basenam
[all...]
/bind-9.6-ESV-R11/
H A Dinstall-sh54 dst=""
100 dst=$1
116 dst=$src
119 if [ -d $dst ]; then
138 if [ x"$dst" = x ]
149 if [ -d $dst ]
151 dst="$dst"/`basename $src`
158 dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
194 $doit $instcmd $dst
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-config/
H A DMakefile.am.inc46 dst="atf-config/integration_test"; $(BUILD_SH_TP)
/bind-9.6-ESV-R11/unit/atf-src/atf-sh/
H A DMakefile.am.inc71 dst="atf-sh/misc_helpers"; $(BUILD_SH_TP)
79 dst="atf-sh/atf_check_test"; $(BUILD_SH_TP)
87 dst="atf-sh/atf-check_test"; $(BUILD_SH_TP)
95 dst="atf-sh/config_test"; $(BUILD_SH_TP)
103 dst="atf-sh/integration_test"; $(BUILD_SH_TP)
111 dst="atf-sh/normalize_test"; $(BUILD_SH_TP)
119 dst="atf-sh/tc_test"; $(BUILD_SH_TP)
127 dst="atf-sh/tp_test"; $(BUILD_SH_TP)
/bind-9.6-ESV-R11/lib/isc/
H A Dinet_ntop.c42 static const char *inet_ntop4(const unsigned char *src, char *dst,
46 static const char *inet_ntop6(const unsigned char *src, char *dst,
51 * isc_net_ntop(af, src, dst, size)
54 * pointer to presentation format address (`dst'), or NULL (see errno).
59 isc_net_ntop(int af, const void *src, char *dst, size_t size) argument
63 return (inet_ntop4(src, dst, size));
66 return (inet_ntop6(src, dst, size));
76 * inet_ntop4(src, dst, size)
79 * `dst' (as a const)
88 inet_ntop4(const unsigned char *src, char *dst, size_ argument
111 inet_ntop6(const unsigned char *src, char *dst, size_t size) argument
[all...]
H A Dinet_pton.c44 static int inet_pton4(const char *src, unsigned char *dst);
45 static int inet_pton6(const char *src, unsigned char *dst);
52 * 0 if the address wasn't valid (`dst' is untouched in this case)
53 * -1 if some other error occurred (`dst' is untouched in this case, too)
58 isc_net_pton(int af, const char *src, void *dst) { argument
61 return (inet_pton4(src, dst));
63 return (inet_pton6(src, dst));
71 /*!\fn static int inet_pton4(const char *src, unsigned char *dst)
77 * does not touch `dst' unless it's returning 1.
82 inet_pton4(const char *src, unsigned char *dst) { argument
134 inet_pton6(const char *src, unsigned char *dst) argument
[all...]
/bind-9.6-ESV-R11/lib/lwres/
H A Dlwinetntop.c42 static const char *inet_ntop4(const unsigned char *src, char *dst,
46 static const char *inet_ntop6(const unsigned char *src, char *dst,
51 * lwres_net_ntop(af, src, dst, size)
54 * pointer to presentation format address (`dst'), or NULL (see errno).
59 lwres_net_ntop(int af, const void *src, char *dst, size_t size) { argument
62 return (inet_ntop4(src, dst, size));
65 return (inet_ntop6(src, dst, size));
75 * inet_ntop4(src, dst, size)
78 * `dst' (as a const)
86 inet_ntop4(const unsigned char *src, char *dst, size_ argument
109 inet_ntop6(const unsigned char *src, char *dst, size_t size) argument
[all...]
H A Dlwinetpton.c41 static int inet_pton4(const char *src, unsigned char *dst);
42 static int inet_pton6(const char *src, unsigned char *dst);
46 * lwres_net_pton(af, src, dst)
51 * 0 if the address wasn't valid (`dst' is untouched in this case)
52 * -1 if some other error occurred (`dst' is untouched in this case, too)
57 lwres_net_pton(int af, const char *src, void *dst) { argument
60 return (inet_pton4(src, dst));
62 return (inet_pton6(src, dst));
71 * inet_pton4(src, dst)
76 * does not touch `dst' unles
81 inet_pton4(const char *src, unsigned char *dst) argument
136 inet_pton6(const char *src, unsigned char *dst) argument
[all...]
/bind-9.6-ESV-R11/lib/dns/
H A Ddst_result.c28 #include <dst/result.h>
29 #include <dst/lib.h>
H A Ddst_lib.c33 #include <dst/lib.h>
H A Ddst_parse.h40 #include <dst/dst.h>
/bind-9.6-ESV-R11/unit/atf-src/atf-report/
H A DMakefile.am.inc72 dst="atf-report/integration_test"; $(BUILD_SH_TP)
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/lib/tests/
H A Dtestsuite.c489 char *dst; local
495 for (src = string, dst = hex_string; *src != '\0'; src++) {
497 *dst++ = *src;
499 *dst++ = '\\';
500 *dst++ = 'x';
501 *dst++ = hex[*(const unsigned char *)src >> 4];
502 *dst++ = hex[*src & 0x0f];
505 *dst = '\0';
517 char *dst; local
523 for (src = string, dst
[all...]
/bind-9.6-ESV-R11/unit/atf-src/admin/
H A Dinstall-sh59 dst=""
119 msrc="$dst"
121 msrc="$msrc $dst"
123 src="$dst"
124 dst="$1"
133 if [ ! -d "$dst" ]
144 msrc="$msrc $dst"
159 dstarg="$dst"
245 file=$dst
/bind-9.6-ESV-R11/lib/dns/include/dns/
H A Dkeytable.h48 #include <dst/dst.h>
H A Dtkey.h29 #include <dst/dst.h>
30 #include <dst/gssapi.h>
113 *\li 'key' is a valid Diffie Hellman dst key
176 *\li 'key' is a valid Diffie Hellman dst key
H A Ddnssec.h31 #include <dst/dst.h>
/bind-9.6-ESV-R11/lib/lwres/unix/include/lwres/
H A Dnet.h125 lwres_net_ntop(int af, const void *src, char *dst, size_t size);
128 lwres_net_pton(int af, const char *src, void *dst);
/bind-9.6-ESV-R11/unit/atf-src/bootstrap/
H A DMakefile.am.inc51 @src=$(srcdir)/bootstrap/h_tp_basic_sh.sh; dst=$@; $(BUILD_SH_TP)
59 @src=$(srcdir)/bootstrap/h_tp_atf_check_sh.sh; dst=$@; $(BUILD_SH_TP)
66 @src=$(srcdir)/bootstrap/h_tp_fail.sh; dst=$@; $(BUILD_SH_TP)
73 @src=$(srcdir)/bootstrap/h_tp_pass.sh; dst=$@; $(BUILD_SH_TP)
/bind-9.6-ESV-R11/lib/isc/unix/
H A Dinterfaceiter.c66 get_addr(unsigned int family, isc_netaddr_t *dst, struct sockaddr *src, argument
77 memset(dst, 0, sizeof(*dst));
79 dst->family = family;
82 memmove(&dst->type.in,
88 memmove(&dst->type.in6, &sa6->sin6_addr,
92 isc_netaddr_setzone(dst, sa6->sin6_scope_id);
113 isc_netaddr_setzone(dst,
115 dst->type.in6.s6_addr[2] = 0;
116 dst
[all...]
/bind-9.6-ESV-R11/bin/dnssec/
H A Ddnssectool.h26 #include <dst/dst.h>
/bind-9.6-ESV-R11/lib/isc/include/isc/
H A Dstring.h214 isc_string_strlcpy(char *dst, const char *src, size_t size);
223 isc_string_strlcat(char *dst, const char *src, size_t size);

Completed in 34 milliseconds

1234