Lines Matching refs:dst
42 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)
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_t size)
98 strcpy(dst, tmp);
100 return (dst);
104 * isc_inet_ntop6(src, dst, size)
111 inet_ntop6(const unsigned char *src, char *dst, size_t size)
196 strcpy(dst, tmp);
197 return (dst);