/bind-9.11.3/lib/isc/win32/ |
H A D | thread.c | 35 isc_thread_join(isc_thread_t thread, isc_threadresult_t *rp) { argument 43 if (rp != NULL && !GetExitCodeThread(thread, rp)) {
|
/bind-9.11.3/lib/dns/rdata/generic/ |
H A D | rp_17.c | 174 dns_rdata_rp_t *rp = source; local 179 REQUIRE(rp->common.rdtype == type); 180 REQUIRE(rp->common.rdclass == rdclass); 185 dns_name_toregion(&rp->mail, ®ion); 187 dns_name_toregion(&rp->text, ®ion); 195 dns_rdata_rp_t *rp = target; local 202 rp->common.rdclass = rdata->rdclass; 203 rp->common.rdtype = rdata->type; 204 ISC_LINK_INIT(&rp->common, link); 209 dns_name_init(&rp 229 dns_rdata_rp_t *rp = source; local [all...] |
/bind-9.11.3/bin/tests/ |
H A D | wire_test.c | 192 char *rp = s, *wp = s; local 195 while (*rp != '\0') { 196 if (*rp == '#') 198 if (*rp != ' ' && *rp != '\t' && 199 *rp != '\r' && *rp != '\n') { 200 *wp++ = *rp; 203 rp++; 213 rp [all...] |
/bind-9.11.3/contrib/idn/idnkit-1.0-src/tools/runidn/ |
H A D | stub.c | 214 struct hostent **rp, int *errp) 218 struct hostent **rp, int *errp); 223 return ((*fp)(name, result, buffer, buflen, rp, errp)); 232 struct hostent **rp, int *errp) 236 struct hostent **rp, int *errp); 241 return ((*fp)(name, af, result, buffer, buflen, rp, errp)); 250 size_t buflen, struct hostent **rp, int *errp) 254 size_t buflen, struct hostent **rp, int *errp); 260 buffer, buflen, rp, errp)); 212 idn_stub_gethostbyname_r(const char *name, struct hostent *result, char *buffer, size_t buflen, struct hostent **rp, int *errp) argument 230 idn_stub_gethostbyname2_r(const char *name, int af, struct hostent *result, char *buffer, size_t buflen, struct hostent **rp, int *errp) argument 248 idn_stub_gethostbyaddr_r(GHBA_ADDR_T addr, GHBA_ADDRLEN_T len, int type, struct hostent *result, char *buffer, size_t buflen, struct hostent **rp, int *errp) argument
|
H A D | resolver.c | 616 struct hostent **rp, int *errp) 628 buflen, rp, errp)); 653 n = REAL(gethostbyname_r)(name, &he, data, datalen, rp, errp); 655 if (n == 0 && *rp != NULL) 656 *rp = copy_decode_hostent_static(*rp, result, buffer, buflen, 674 struct hostent **rp, int *errp) 686 buflen, rp, errp)); 710 n = REAL(gethostbyname2_r)(name, af, &he, data, datalen, rp, errp); 712 if (n == 0 && *rp ! 614 gethostbyname_r(const char *name, struct hostent *result, char *buffer, size_t buflen, struct hostent **rp, int *errp) argument 672 gethostbyname2_r(const char *name, int af, struct hostent *result, char *buffer, size_t buflen, struct hostent **rp, int *errp) argument 729 gethostbyaddr_r(GHBA_ADDR_T addr, GHBA_ADDRLEN_T len, int type, struct hostent *result, char *buffer, size_t buflen, struct hostent **rp, int *errp) argument [all...] |
/bind-9.11.3/lib/dns/tests/ |
H A D | dnstest.c | 389 char *rp, *wp; local 401 rp = s; 404 while (*rp != '\0') { 405 if (*rp == '#') 407 if (*rp != ' ' && *rp != '\t' && 408 *rp != '\r' && *rp != '\n') { 409 *wp++ = *rp; 412 rp [all...] |
/bind-9.11.3/lib/isc/ |
H A D | entropy.c | 268 entropypool_add_word(isc_entropypool_t *rp, isc_uint32_t val) { argument 277 val ^= rp->pool[(rp->cursor + TAP1) & (RND_POOLWORDS - 1)]; 278 val ^= rp->pool[(rp->cursor + TAP2) & (RND_POOLWORDS - 1)]; 279 val ^= rp->pool[(rp->cursor + TAP3) & (RND_POOLWORDS - 1)]; 280 val ^= rp->pool[(rp->cursor + TAP4) & (RND_POOLWORDS - 1)]; 281 val ^= rp [all...] |