Lines Matching refs:tresult
818 isc_result_t tresult, result = ISC_R_SUCCESS;
902 tresult = ISC_R_NOMEMORY;
908 tresult = dns_name_dup(aname, mctx, ansname);
909 if (tresult != ISC_R_SUCCESS)
913 if (tresult != ISC_R_SUCCESS)
914 result = tresult;
943 tresult = dns_rdataset_first(trdataset);
944 if (tresult != ISC_R_SUCCESS)
947 tresult = dns_rdata_tostruct(&rdata, &cname, NULL);
949 if (tresult != ISC_R_SUCCESS)
951 tresult = dns_name_copy(&cname.cname, name, NULL);
953 if (tresult == ISC_R_SUCCESS)
956 result = tresult;
979 tresult = dns_rdataset_first(trdataset);
980 if (tresult != ISC_R_SUCCESS) {
981 result = tresult;
985 tresult = dns_rdata_tostruct(&rdata, &dname, NULL);
987 if (tresult != ISC_R_SUCCESS) {
988 result = tresult;
997 tresult = dns_name_concatenate(prefix, &dname.dname,
1000 if (tresult == ISC_R_SUCCESS)
1003 result = tresult;
1029 tresult = dns_db_allrdatasets(db, node, NULL, 0,
1031 if (tresult != ISC_R_SUCCESS) {
1032 result = tresult;
1036 tresult = dns_rdatasetiter_first(rdsiter);
1037 while (tresult == ISC_R_SUCCESS) {
1054 tresult = dns_rdatasetiter_next(rdsiter);
1056 if (tresult == ISC_R_SUCCESS &&
1058 tresult = getrdataset(mctx,
1060 if (tresult != ISC_R_SUCCESS) {
1061 result = tresult;
1080 if (tresult != ISC_R_NOMORE)