HomeSort by: relevance | last modified time | path
    Searched defs:qctx (Results 1 - 6 of 6) sorted by relevancy

  /src/external/mpl/bind/dist/bin/tests/system/hooks/driver/
test-async.c 196 client_state_get(const query_ctx_t *qctx, async_instance_t *inst) {
201 result = isc_ht_find(inst->ht, (const unsigned char *)&qctx->client,
202 sizeof(qctx->client), (void **)&state);
209 client_state_create(const query_ctx_t *qctx, async_instance_t *inst) {
217 result = isc_ht_add(inst->ht, (const unsigned char *)&qctx->client,
218 sizeof(qctx->client), state);
224 client_state_destroy(const query_ctx_t *qctx, async_instance_t *inst) {
225 state_t *state = client_state_get(qctx, inst);
233 result = isc_ht_delete(inst->ht, (const unsigned char *)&qctx->client,
234 sizeof(qctx->client))
243 query_ctx_t *qctx = (query_ctx_t *)arg; local
306 query_ctx_t *qctx = (query_ctx_t *)arg; local
331 query_ctx_t *qctx = (query_ctx_t *)arg; local
    [all...]
  /src/external/mpl/bind/dist/tests/libtest/
ns.c 350 query_ctx_t *qctx; local
357 * qctx is a stack variable in lib/ns/query.c. Its contents need to be
361 qctx = isc_mem_get(mctx, sizeof(*qctx));
362 memmove(qctx, (query_ctx_t *)arg, sizeof(*qctx));
365 *qctxp = qctx;
473 * decrement it in order for it to drop to zero when "qctx" gets
493 query_ctx_t *qctx; local
498 qctx = *qctxp
    [all...]
  /src/external/mpl/bind/dist/bin/plugins/
filter-a.c 428 query_ctx_t *qctx; member in struct:section_filter
466 client_state_get(const query_ctx_t *qctx, filter_instance_t *inst) {
471 result = isc_ht_find(inst->ht, (const unsigned char *)&qctx->client,
472 sizeof(qctx->client), (void **)&client_state);
479 client_state_create(const query_ctx_t *qctx, filter_instance_t *inst) {
489 result = isc_ht_add(inst->ht, (const unsigned char *)&qctx->client,
490 sizeof(qctx->client), client_state);
496 client_state_destroy(const query_ctx_t *qctx, filter_instance_t *inst) {
497 filter_data_t *client_state = client_state_get(qctx, inst);
505 result = isc_ht_delete(inst->ht, (const unsigned char *)&qctx->client
585 query_ctx_t *qctx = filter->qctx; local
631 query_ctx_t *qctx = (query_ctx_t *)arg; local
652 query_ctx_t *qctx = (query_ctx_t *)arg; local
689 query_ctx_t *qctx = (query_ctx_t *)arg; local
790 query_ctx_t *qctx = (query_ctx_t *)arg; local
825 query_ctx_t *qctx = (query_ctx_t *)arg; local
861 query_ctx_t *qctx = (query_ctx_t *)arg; local
    [all...]
filter-aaaa.c 432 query_ctx_t *qctx; member in struct:section_filter
470 client_state_get(const query_ctx_t *qctx, filter_instance_t *inst) {
475 result = isc_ht_find(inst->ht, (const unsigned char *)&qctx->client,
476 sizeof(qctx->client), (void **)&client_state);
483 client_state_create(const query_ctx_t *qctx, filter_instance_t *inst) {
493 result = isc_ht_add(inst->ht, (const unsigned char *)&qctx->client,
494 sizeof(qctx->client), client_state);
500 client_state_destroy(const query_ctx_t *qctx, filter_instance_t *inst) {
501 filter_data_t *client_state = client_state_get(qctx, inst);
509 result = isc_ht_delete(inst->ht, (const unsigned char *)&qctx->client
589 query_ctx_t *qctx = filter->qctx; local
635 query_ctx_t *qctx = (query_ctx_t *)arg; local
656 query_ctx_t *qctx = (query_ctx_t *)arg; local
693 query_ctx_t *qctx = (query_ctx_t *)arg; local
793 query_ctx_t *qctx = (query_ctx_t *)arg; local
828 query_ctx_t *qctx = (query_ctx_t *)arg; local
864 query_ctx_t *qctx = (query_ctx_t *)arg; local
    [all...]
  /src/external/mpl/bind/dist/tests/ns/
query_test.c 80 query_ctx_t *qctx = NULL; local
109 result = ns_test_qctx_create(&qctx_params, &qctx);
125 dns_badcache_add(qctx->client->view->failcache, dns_rootname,
133 ns__query_sfcache(qctx);
136 if (qctx->result != DNS_R_SERVFAIL) {
140 isc_result_totext(qctx->result));
143 if (qctx->result != ISC_R_SUCCESS) {
147 isc_result_totext(qctx->result));
154 ns_test_qctx_destroy(&qctx);
280 query_ctx_t *qctx = NULL local
611 query_ctx_t qctx; \/* shallow copy of qctx passed to hook *\/ member in struct:hookasync_data
683 query_ctx_t *qctx = arg; local
836 query_ctx_t *qctx = arg; local
846 query_ctx_t *qctx = NULL; local
1316 query_ctx_t *qctx = arg; local
1346 query_ctx_t *qctx = arg; local
1357 query_ctx_t *qctx = NULL; local
    [all...]
  /src/external/mpl/bind/dist/lib/ns/
query.c 95 #define QUERY_ERROR(qctx, r) \
97 (qctx)->result = r; \
98 (qctx)->want_restart = false; \
99 (qctx)->line = __LINE__; \
186 #define CCTRACE(l, m) client_trace(qctx->client, l, m)
254 query_addanswer(query_ctx_t *qctx);
257 query_prepare_delegation_response(query_ctx_t *qctx);
266 * Return the hooktable in use with 'qctx', or if there isn't one
270 get_hooktab(query_ctx_t *qctx) {
271 if (qctx == NULL || qctx->view == NULL || qctx->view->hooktable == NULL
1768 query_ctx_t *qctx = arg; local
2653 query_ctx_t qctx; local
5692 query_ctx_t qctx; local
6013 query_ctx_t *qctx = arg; local
6338 query_ctx_t qctx; local
6829 query_ctx_t *qctx = rev->saved_qctx; local
9723 query_ctx_t *qctx = val; local
    [all...]

Completed in 32 milliseconds