Lines Matching defs:this

5  * License, v. 2.0. If a copy of the MPL was not distributed with this
1030 dns_rdatalist_t *this;
1939 * as this will minimise list traversal.
1942 this = ISC_LIST_HEAD(glue_list);
1944 this = ISC_LIST_HEAD(current_list);
1946 while (this != NULL) {
1947 if (this->type == type && this->covers == covers)
1949 this = ISC_LIST_NEXT(this, link);
1952 if (this == NULL) {
1968 this = &rdatalist[rdlcount++];
1969 dns_rdatalist_init(this);
1970 this->type = type;
1971 this->covers = covers;
1972 this->rdclass = lctx->zclass;
1973 this->ttl = lctx->ttl;
1975 ISC_LIST_INITANDPREPEND(glue_list, this, link);
1977 ISC_LIST_INITANDPREPEND(current_list, this,
1979 } else if (this->ttl != lctx->ttl) {
1983 source, line, this->ttl);
1984 lctx->ttl = this->ttl;
1998 ISC_LIST_APPEND(this->rdata, &rdata[rdcount], link);
2047 while ((this = ISC_LIST_HEAD(current_list)) != NULL)
2048 ISC_LIST_UNLINK(current_list, this, link);
2049 while ((this = ISC_LIST_HEAD(glue_list)) != NULL)
2050 ISC_LIST_UNLINK(glue_list, this, link);
2335 * in this format, and so trying to continue parsing erroneous data
2381 * allocate enough space if this is not the case, but
2384 * but robust approach in this atypical case: read
2546 /* Commit this RRset. rdatalist will be unlinked. */
2957 dns_rdatalist_t *this;
2964 while ((this = ISC_LIST_HEAD(*current)) != NULL) {
2965 ISC_LIST_UNLINK(*current, this, link);
2966 ISC_LIST_APPEND(save, this, link);
2968 while ((this = ISC_LIST_HEAD(save)) != NULL) {
2969 ISC_LIST_UNLINK(save, this, link);
2971 newlist[rdlcount] = *this;
2977 while ((this = ISC_LIST_HEAD(*glue)) != NULL) {
2978 ISC_LIST_UNLINK(*glue, this, link);
2979 ISC_LIST_APPEND(save, this, link);
2981 while ((this = ISC_LIST_HEAD(save)) != NULL) {
2982 ISC_LIST_UNLINK(save, this, link);
2984 newlist[rdlcount] = *this;
3007 dns_rdatalist_t *this;
3018 this = ISC_LIST_HEAD(*current);
3019 while (this != NULL) {
3021 while ((rdata = ISC_LIST_HEAD(this->rdata)) != NULL) {
3022 ISC_LIST_UNLINK(this->rdata, rdata, link);
3029 ISC_LIST_APPEND(this->rdata, &newlist[rdcount], link);
3032 this = ISC_LIST_NEXT(this, link);
3038 this = ISC_LIST_HEAD(*glue);
3039 while (this != NULL) {
3041 while ((rdata = ISC_LIST_HEAD(this->rdata)) != NULL) {
3042 ISC_LIST_UNLINK(this->rdata, rdata, link);
3049 ISC_LIST_APPEND(this->rdata, &newlist[rdcount], link);
3052 this = ISC_LIST_NEXT(this, link);
3061 resign_fromlist(dns_rdatalist_t *this, dns_loadctx_t *lctx) {
3066 rdata = ISC_LIST_HEAD(this->rdata);
3096 dns_rdatalist_t *this;
3102 this = ISC_LIST_HEAD(*head);
3105 if (this == NULL)
3109 RUNTIME_CHECK(dns_rdatalist_tordataset(this, &dataset)
3113 * If this is a secure dynamic zone set the re-signing time.
3118 dataset.resign = resign_fromlist(this, lctx);
3141 ISC_LIST_UNLINK(*head, this, link);
3142 this = ISC_LIST_HEAD(*head);
3143 } while (this != NULL);
3153 dns_rdatalist_t *this;
3161 this = ISC_LIST_HEAD(*head);
3162 while (this != NULL) {
3163 if (this->type == dns_rdatatype_ns)
3165 this = ISC_LIST_NEXT(this, link);
3167 if (this == NULL)
3170 rdata = ISC_LIST_HEAD(this->rdata);