Lines Matching refs:line

34 #define TEST_FL_ptr(a)               test_ptr(file, line, #a, a)
35 #define TEST_FL_mem_eq(a, m, b, n) test_mem_eq(file, line, #a, #b, a, m, b, n)
36 #define TEST_FL_strn_eq(a, b, n) test_strn_eq(file, line, #a, #b, a, n, b, n)
37 #define TEST_FL_strn2_eq(a, m, b, n) test_strn_eq(file, line, #a, #b, a, m, b, n)
38 #define TEST_FL_int_eq(a, b) test_int_eq(file, line, #a, #b, a, b)
39 #define TEST_FL_int_ge(a, b) test_int_ge(file, line, #a, #b, a, b)
40 #define TEST_FL_int_gt(a, b) test_int_gt(file, line, #a, #b, a, b)
41 #define TEST_FL_long_gt(a, b) test_long_gt(file, line, #a, #b, a, b)
42 #define TEST_FL_true(a) test_true(file, line, #a, (a) != 0)
134 typedef int (encoder)(const char *file, const int line,
139 typedef int (decoder)(const char *file, const int line,
143 typedef int (tester)(const char *file, const int line,
146 typedef int (checker)(const char *file, const int line,
153 static int test_encode_decode(const char *file, const int line, in test_encode_decode() argument
175 if (!TEST_true(encode_cb(file, line, &encoded, &encoded_len, pkey, selection, in test_encode_decode()
180 if (TEST_false(decode_cb(file, line, (void **)&pkey2, encoded, in test_encode_decode()
188 if (!TEST_true(check_cb(file, line, type, encoded, encoded_len)) in test_encode_decode()
189 || !TEST_true(decode_cb(file, line, (void **)&pkey2, encoded, encoded_len, in test_encode_decode()
195 && !TEST_true(decode_cb(file, line, (void **)&pkey3, encoded, encoded_len, in test_encode_decode()
199 || !TEST_true(encode_cb(file, line, &encoded2, &encoded2_len, pkey2, selection, in test_encode_decode()
221 && !test_cb(file, line, encoded, encoded_len, encoded2, encoded2_len)) in test_encode_decode()
242 static int encode_EVP_PKEY_prov(const char *file, const int line, in encode_EVP_PKEY_prov() argument
283 static int decode_EVP_PKEY_prov(const char *file, const int line, in decode_EVP_PKEY_prov() argument
358 static int encode_EVP_PKEY_legacy_PEM(const char *file, const int line, in encode_EVP_PKEY_legacy_PEM() argument
398 static int encode_EVP_PKEY_MSBLOB(const char *file, const int line, in encode_EVP_PKEY_MSBLOB() argument
443 static int encode_EVP_PKEY_PVK(const char *file, const int line, in encode_EVP_PKEY_PVK() argument
476 static int test_text(const char *file, const int line, in test_text() argument
483 static int test_mem(const char *file, const int line, in test_mem() argument
525 static int check_unprotected_PKCS8_DER(const char *file, const int line, in check_unprotected_PKCS8_DER() argument
564 static int check_unprotected_PKCS8_PEM(const char *file, const int line, in check_unprotected_PKCS8_PEM() argument
587 static int check_params_DER(const char *file, const int line, in check_params_DER() argument
613 static int check_params_PEM(const char *file, const int line, in check_params_PEM() argument
645 static int check_unprotected_legacy_PEM(const char *file, const int line, in check_unprotected_legacy_PEM() argument
672 static int check_MSBLOB(const char *file, const int line, in check_MSBLOB() argument
694 static int check_PVK(const char *file, const int line, in check_PVK() argument
718 static int check_protected_PKCS8_DER(const char *file, const int line, in check_protected_PKCS8_DER() argument
742 static int check_protected_PKCS8_PEM(const char *file, const int line, in check_protected_PKCS8_PEM() argument
765 static int check_protected_legacy_PEM(const char *file, const int line, in check_protected_legacy_PEM() argument
812 static int check_public_DER(const char *file, const int line, in check_public_DER() argument
834 static int check_public_PEM(const char *file, const int line, in check_public_PEM() argument
856 static int check_public_MSBLOB(const char *file, const int line, in check_public_MSBLOB() argument