Home
last modified time | relevance | path

Searched refs:MBEDTLS_TEST_HOOKS (Results 1 – 25 of 94) sorted by relevance

1234

/aosp_15_r20/external/mbedtls/tests/suites/
H A Dtest_suite_base64.function7 #if defined(MBEDTLS_TEST_HOOKS)
10 #endif /* MBEDTLS_TEST_HOOKS */
19 /* BEGIN_CASE depends_on:MBEDTLS_TEST_HOOKS */
33 /* BEGIN_CASE depends_on:MBEDTLS_TEST_HOOKS */
H A Dtest_suite_lmots.function5 #if defined(MBEDTLS_TEST_HOOKS)
21 #endif /* defined(MBEDTLS_TEST_HOOKS) */
223 /* BEGIN_CASE depends_on:MBEDTLS_TEST_HOOKS:MBEDTLS_LMS_PRIVATE */
H A Dtest_suite_ecp.function1090 /* BEGIN_CASE depends_on:MBEDTLS_TEST_HOOKS:MBEDTLS_ECP_MONTGOMERY_ENABLED:MBEDTLS_ECP_LIGHT */
1270 /* BEGIN_CASE depends_on:MBEDTLS_TEST_HOOKS:MBEDTLS_ECP_WITH_MPI_UINT */
1393 /* BEGIN_CASE depends_on:MBEDTLS_TEST_HOOKS:MBEDTLS_ECP_WITH_MPI_UINT */
1435 /* BEGIN_CASE depends_on:MBEDTLS_TEST_HOOKS:MBEDTLS_ECP_WITH_MPI_UINT */
1492 /* BEGIN_CASE depends_on:MBEDTLS_TEST_HOOKS:MBEDTLS_ECP_WITH_MPI_UINT */
1543 /* BEGIN_CASE depends_on:MBEDTLS_TEST_HOOKS:MBEDTLS_ECP_WITH_MPI_UINT */
1606 /* BEGIN_CASE depends_on:MBEDTLS_TEST_HOOKS:MBEDTLS_ECP_WITH_MPI_UINT */
1634 /* BEGIN_CASE depends_on:MBEDTLS_TEST_HOOKS:MBEDTLS_ECP_LIGHT */
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/tests/suites/
H A Dtest_suite_base64.function7 #if defined(MBEDTLS_TEST_HOOKS)
10 #endif /* MBEDTLS_TEST_HOOKS */
19 /* BEGIN_CASE depends_on:MBEDTLS_TEST_HOOKS */
33 /* BEGIN_CASE depends_on:MBEDTLS_TEST_HOOKS */
H A Dtest_suite_lmots.function5 #if defined(MBEDTLS_TEST_HOOKS)
21 #endif /* defined(MBEDTLS_TEST_HOOKS) */
223 /* BEGIN_CASE depends_on:MBEDTLS_TEST_HOOKS:MBEDTLS_LMS_PRIVATE */
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/tests/src/
H A Dhelpers.c16 #if defined(MBEDTLS_TEST_HOOKS) && defined(MBEDTLS_PSA_CRYPTO_C)
320 #if defined(MBEDTLS_TEST_HOOKS) && defined(MBEDTLS_PSA_CRYPTO_C) \ in mbedtls_test_platform_setup()
350 #if defined(MBEDTLS_TEST_HOOKS) && defined(MBEDTLS_PSA_CRYPTO_C) \ in mbedtls_test_platform_teardown()
663 #if defined(MBEDTLS_TEST_HOOKS)
H A Dpsa_memory_poisoning_wrappers.c11 #if defined(MBEDTLS_TEST_HOOKS) && defined(MBEDTLS_PSA_CRYPTO_C) \
/aosp_15_r20/external/mbedtls/include/mbedtls/
H A Derror.h116 #if defined(MBEDTLS_TEST_HOOKS)
145 #if defined(MBEDTLS_TEST_HOOKS) in mbedtls_error_add()
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/include/mbedtls/
H A Derror.h116 #if defined(MBEDTLS_TEST_HOOKS)
145 #if defined(MBEDTLS_TEST_HOOKS) in mbedtls_error_add()
/aosp_15_r20/external/mbedtls/tests/include/test/
H A Dhelpers.h24 defined(MBEDTLS_TEST_HOOKS)
252 #if defined(MBEDTLS_TEST_HOOKS)
/aosp_15_r20/external/mbedtls/library/
H A Dcommon.h41 #if defined(MBEDTLS_TEST_HOOKS)
47 #if defined(MBEDTLS_TEST_HOOKS)
H A Dbase64_internal.h16 #if defined(MBEDTLS_TEST_HOOKS)
H A Dbignum_mod_raw_invasive.h19 #if defined(MBEDTLS_TEST_HOOKS)
H A Dssl_tls13_invasive.h15 #if defined(MBEDTLS_TEST_HOOKS)
H A Dpsa_crypto_invasive.h64 #if defined(MBEDTLS_TEST_HOOKS) && defined(MBEDTLS_PSA_CRYPTO_C)
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/library/
H A Dcommon.h45 #if defined(MBEDTLS_TEST_HOOKS)
51 #if defined(MBEDTLS_TEST_HOOKS)
H A Dbase64_internal.h16 #if defined(MBEDTLS_TEST_HOOKS)
H A Dbignum_mod_raw_invasive.h19 #if defined(MBEDTLS_TEST_HOOKS)
H A Dssl_tls13_invasive.h15 #if defined(MBEDTLS_TEST_HOOKS)
/aosp_15_r20/external/mbedtls/docs/architecture/testing/
H A Dinvasive-testing.md36 …BEDTLS_STATIC_TESTABLE`, and make the tests that use it depend on `MBEDTLS_TEST_HOOKS` (see [“rule…
58 * **Test-specific code must be guarded by `#if defined(MBEDTLS_TEST_HOOKS)`**. Do not create fine-g…
59 * **Do not use `MBEDTLS_TEST_HOOKS` for security checks or assertions.** Security checks belong in …
60 * **Merely defining `MBEDTLS_TEST_HOOKS` must not change the behavior**. It may define extra functi…
71 With `MBEDTLS_TEST_HOOKS` set, `mbedtls_foo` is a global variable of function pointer type. This gl…
75 * The test function (or the whole test file) must depend on `MBEDTLS_TEST_HOOKS`.
302 …ture is mostly but not exclusively useful for testing, and may be moved under `MBEDTLS_TEST_HOOKS`.
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/docs/architecture/testing/
H A Dinvasive-testing.md36 …BEDTLS_STATIC_TESTABLE`, and make the tests that use it depend on `MBEDTLS_TEST_HOOKS` (see [“rule…
58 * **Test-specific code must be guarded by `#if defined(MBEDTLS_TEST_HOOKS)`**. Do not create fine-g…
59 * **Do not use `MBEDTLS_TEST_HOOKS` for security checks or assertions.** Security checks belong in …
60 * **Merely defining `MBEDTLS_TEST_HOOKS` must not change the behavior**. It may define extra functi…
71 With `MBEDTLS_TEST_HOOKS` set, `mbedtls_foo` is a global variable of function pointer type. This gl…
75 * The test function (or the whole test file) must depend on `MBEDTLS_TEST_HOOKS`.
302 …ture is mostly but not exclusively useful for testing, and may be moved under `MBEDTLS_TEST_HOOKS`.
/aosp_15_r20/external/mbedtls/programs/ssl/
H A Dssl_test_lib.c15 #if defined(MBEDTLS_TEST_HOOKS)
412 #if defined(MBEDTLS_TEST_HOOKS)
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/programs/ssl/
H A Dssl_test_lib.c14 #if defined(MBEDTLS_TEST_HOOKS)
442 #if defined(MBEDTLS_TEST_HOOKS)
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/tests/include/test/
H A Dpsa_memory_poisoning_wrappers.h22 #if defined(MBEDTLS_TEST_HOOKS) && defined(MBEDTLS_TEST_MEMORY_CAN_POISON)
/aosp_15_r20/external/mbedtls/tests/configs/
H A Dtls13-only.h31 #define MBEDTLS_TEST_HOOKS macro

1234