/bind-9.6-ESV-R11/lib/isc/win32/ |
H A D | thread.c | 45 isc_thread_join(isc_thread_t thread, isc_threadresult_t *rp) { argument 53 if (rp != NULL && !GetExitCodeThread(thread, rp)) {
|
/bind-9.6-ESV-R11/bin/tests/ |
H A D | wire_test.c | 77 char *rp, *wp; local 130 rp = s; 133 while (*rp != '\0') { 134 if (*rp == '#') 136 if (*rp != ' ' && *rp != '\t' && 137 *rp != '\r' && *rp != '\n') { 138 *wp++ = *rp; 141 rp [all...] |
H A D | rdata_test.c | 231 static dns_rdata_rp_t rp; local 232 result = dns_rdata_tostruct(rdata, sp = &rp, NULL); 498 static dns_rdata_rp_t rp; local 499 result = dns_rdata_tostruct(rdata, sp = &rp, mctx); 795 dns_rdata_rp_t rp; 796 result = dns_rdata_fromstruct(rdata2, rdc, rdt, &rp, b);
|
/bind-9.6-ESV-R11/lib/dns/rdata/generic/ |
H A D | rp_17.c | 182 dns_rdata_rp_t *rp = source; local 187 REQUIRE(rp->common.rdtype == type); 188 REQUIRE(rp->common.rdclass == rdclass); 193 dns_name_toregion(&rp->mail, ®ion); 195 dns_name_toregion(&rp->text, ®ion); 203 dns_rdata_rp_t *rp = target; local 210 rp->common.rdclass = rdata->rdclass; 211 rp->common.rdtype = rdata->type; 212 ISC_LINK_INIT(&rp->common, link); 217 dns_name_init(&rp 237 dns_rdata_rp_t *rp = source; local [all...] |
/bind-9.6-ESV-R11/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.6-ESV-R11/lib/isc/ |
H A D | entropy.c | 272 entropypool_add_word(isc_entropypool_t *rp, isc_uint32_t val) { argument 281 val ^= rp->pool[(rp->cursor + TAP1) & (RND_POOLWORDS - 1)]; 282 val ^= rp->pool[(rp->cursor + TAP2) & (RND_POOLWORDS - 1)]; 283 val ^= rp->pool[(rp->cursor + TAP3) & (RND_POOLWORDS - 1)]; 284 val ^= rp->pool[(rp->cursor + TAP4) & (RND_POOLWORDS - 1)]; 285 val ^= rp [all...] |