Lines Matching refs:size
34 static int inet_ntop4(const unsigned char *src, char *dst, size_t size);
35 static int inet_ntop6(const unsigned char *src, char *dst, size_t size);
40 int uv_inet_ntop(int af, const void* src, char* dst, size_t size) {
43 return (inet_ntop4(src, dst, size));
45 return (inet_ntop6(src, dst, size));
53 static int inet_ntop4(const unsigned char *src, char *dst, size_t size) {
59 if (l <= 0 || (size_t) l >= size) {
62 uv__strscpy(dst, tmp, size);
67 static int inet_ntop6(const unsigned char *src, char *dst, size_t size) {
70 * to contain a value of the specified size. On some systems, like
144 if ((size_t) (tp - tmp) > size)
146 uv__strscpy(dst, tmp, size);