/src/lib/libc/net/ |
hostent.h | 42 struct hostent *gethostent_r(FILE *, struct hostent *, char *, size_t, int *);
|
sethostent.c | 188 hp = gethostent_r(hf, info->hp, info->buf, info->buflen, 283 while ((hp = gethostent_r(hf, info->hp, info->buf, info->buflen,
|
gethnamaddr.c | 741 gethostent_r(FILE *hf, struct hostent *hent, char *buf, size_t buflen, int *he) function in typeref:struct:hostent * 1362 return gethostent_r(_h_file, &h_ent, h_buf, sizeof(h_buf), &h_errno);
|
/src/distrib/utils/libhack/ |
gethost.c | 137 gethostent_r(FILE *hf, struct hostent *hent, char *buf, size_t buflen, int *he) function in typeref:struct:hostent *
|
/src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/ |
msan_test.cc | 1180 TEST(MemorySanitizer, gethostent_r) { 1185 int res = gethostent_r(&he, buf, sizeof(buf), &result, &err);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_common_interceptors.inc | 2720 INTERCEPTOR(int, gethostent_r, struct __sanitizer_hostent *ret, char *buf, 2723 COMMON_INTERCEPTOR_ENTER(ctx, gethostent_r, ret, buf, buflen, result, 2728 int res = REAL(gethostent_r)(ret, buf, buflen, result, h_errnop); 2738 COMMON_INTERCEPT_FUNCTION(gethostent_r);
|