Lines Matching defs:cctx
98 dns_compress_t cctx;
118 RUNTIME_CHECK(dns_compress_init(&cctx, -1, mctx) == ISC_R_SUCCESS);
120 RUNTIME_CHECK(dns_name_towire(name1, &cctx, &source) == ISC_R_SUCCESS);
123 RUNTIME_CHECK(dns_compress_localinit(&cctx, name1, &source) ==
126 dns_compress_setmethods(&cctx, allowed);
127 RUNTIME_CHECK(dns_name_towire(name2, &cctx, &source) == ISC_R_SUCCESS);
128 RUNTIME_CHECK(dns_name_towire(name2, &cctx, &source) == ISC_R_SUCCESS);
129 RUNTIME_CHECK(dns_name_towire(name3, &cctx, &source) == ISC_R_SUCCESS);
132 dns_compress_localinvalidate(&cctx);
134 dns_compress_rollback(&cctx, 0); /* testing only */
135 dns_compress_invalidate(&cctx);