Lines Matching defs:tresult
491 isc_result_t tresult, result = ISC_R_SUCCESS;
600 tresult = dns_rdataset_first(trdataset);
601 if (tresult != ISC_R_SUCCESS) {
605 tresult = dns_rdata_tostruct(&rdata, &cname, NULL);
607 if (tresult != ISC_R_SUCCESS) {
635 tresult = dns_rdataset_first(trdataset);
636 if (tresult != ISC_R_SUCCESS) {
637 result = tresult;
641 tresult = dns_rdata_tostruct(&rdata, &dname, NULL);
643 if (tresult != ISC_R_SUCCESS) {
644 result = tresult;
652 tresult = dns_name_concatenate(prefix, &dname.dname,
655 if (tresult == ISC_R_SUCCESS) {
658 result = tresult;
688 tresult = dns_db_allrdatasets(db, node, NULL, 0, 0,
690 if (tresult != ISC_R_SUCCESS) {
691 result = tresult;
695 tresult = dns_rdatasetiter_first(rdsiter);
696 while (tresult == ISC_R_SUCCESS) {
712 tresult = dns_rdatasetiter_next(rdsiter);
714 if (tresult == ISC_R_SUCCESS &&
717 tresult = getrdataset(mctx,
719 if (tresult != ISC_R_SUCCESS) {
720 result = tresult;
745 if (tresult != ISC_R_NOMORE) {