Lines Matching refs:rv
355 int result, rv = 0; in test_x509_time() local
395 rv = 1; in test_x509_time()
399 return rv; in test_x509_time()
541 int ret = 0, rv; in test_x509_time_print_rfc_822() local
548 rv = ASN1_TIME_print_ex(m, &x509_print_tests_rfc_822[idx].asn1, ASN1_DTFLGS_RFC822); in test_x509_time_print_rfc_822()
551 if (rv == 0 && !TEST_str_eq(readable, "Bad time value")) { in test_x509_time_print_rfc_822()
555 if (!TEST_int_ne(rv = BIO_get_mem_data(m, &pp), 0) in test_x509_time_print_rfc_822()
556 || !TEST_int_eq(rv, (int)strlen(readable)) in test_x509_time_print_rfc_822()
557 || !TEST_strn_eq(pp, readable, rv)) in test_x509_time_print_rfc_822()
569 int ret = 0, rv; in test_x509_time_print_iso_8601() local
576 rv = ASN1_TIME_print_ex(m, &x509_print_tests_iso_8601[idx].asn1, ASN1_DTFLGS_ISO8601); in test_x509_time_print_iso_8601()
579 if (rv == 0 && !TEST_str_eq(readable, "Bad time value")) { in test_x509_time_print_iso_8601()
583 if (!TEST_int_ne(rv = BIO_get_mem_data(m, &pp), 0) in test_x509_time_print_iso_8601()
584 || !TEST_int_eq(rv, (int)strlen(readable)) in test_x509_time_print_iso_8601()
585 || !TEST_strn_eq(pp, readable, rv)) in test_x509_time_print_iso_8601()