Searched refs:rp (Results 1 - 10 of 10) sorted by relevance

/bind-9.11.3/lib/isc/include/isc/
H A Drefcount.h110 #define isc_refcount_current(rp) \
111 ((unsigned int)(atomic_load_explicit(&(rp)->refs, \
113 #define isc_refcount_destroy(rp) ISC_REQUIRE(isc_refcount_current(rp) == 0)
115 #define isc_refcount_increment0(rp, tp) \
120 (&(rp)->refs, 1, memory_order_relaxed); \
125 #define isc_refcount_increment(rp, tp) \
130 (&(rp)->refs, 1, memory_order_relaxed); \
136 #define isc_refcount_decrement(rp, tp) \
141 (&(rp)
[all...]
/bind-9.11.3/lib/isc/pthreads/include/isc/
H A Dthread.h47 #define isc_thread_join(t, rp) \
48 ((pthread_join((t), (rp)) == 0) ? \
/bind-9.11.3/lib/dns/rdata/generic/
H A Drp_17.c174 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, &region);
187 dns_name_toregion(&rp->text, &region);
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/lib/isc/win32/
H A Dthread.c35 isc_thread_join(isc_thread_t thread, isc_threadresult_t *rp) { argument
43 if (rp != NULL && !GetExitCodeThread(thread, rp)) {
/bind-9.11.3/bin/tests/
H A Dwire_test.c192 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 Dstub.h16 struct hostent **rp, int *errp);
36 struct hostent **rp, int *errp);
50 size_t buflen, struct hostent **rp, int *errp);
H A Dstub.c214 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 Dresolver.c616 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 Ddnstest.c389 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 Dentropy.c268 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...]

Completed in 81 milliseconds