Lines Matching defs:tresult
735 isc_result_t tresult, result = ISC_R_SUCCESS;
852 tresult = dns_rdataset_first(trdataset);
853 if (tresult != ISC_R_SUCCESS) {
857 tresult = dns_rdata_tostruct(&rdata, &cname, NULL);
859 if (tresult != ISC_R_SUCCESS) {
887 tresult = dns_rdataset_first(trdataset);
888 if (tresult != ISC_R_SUCCESS) {
889 result = tresult;
893 tresult = dns_rdata_tostruct(&rdata, &dname, NULL);
895 if (tresult != ISC_R_SUCCESS) {
896 result = tresult;
904 tresult = dns_name_concatenate(prefix, &dname.dname,
907 if (tresult == ISC_R_SUCCESS) {
910 result = tresult;
940 tresult = dns_db_allrdatasets(db, node, NULL, 0, 0,
942 if (tresult != ISC_R_SUCCESS) {
943 result = tresult;
947 tresult = dns_rdatasetiter_first(rdsiter);
948 while (tresult == ISC_R_SUCCESS) {
964 tresult = dns_rdatasetiter_next(rdsiter);
966 if (tresult == ISC_R_SUCCESS &&
969 tresult = getrdataset(mctx,
971 if (tresult != ISC_R_SUCCESS) {
972 result = tresult;
997 if (tresult != ISC_R_NOMORE) {