Lines Matching defs:dst
42 * inet_ntop(af, src, dst, size)
45 * pointer to presentation format address (`dst'), or NULL (see errno).
48 inet_ntop(int af, const void *src, char *dst, socklen_t size)
52 return (inet_ntop4(src, dst, size));
54 return (inet_ntop6(src, dst, size));
64 * inet_ntop4(src, dst, size)
67 * `dst' (as a const)
81 inet_ntop4(const uchar_t *src, char *dst, socklen_t size)
90 (void) strcpy(dst, tmp);
91 return (dst);
96 * inet_ntop6(src, dst, size)
103 inet_ntop6(const uchar_t *src, char *dst, socklen_t size)
185 (void) strcpy(dst, tmp);
186 return (dst);