/aosp_15_r20/external/mbedtls/tests/suites/ |
H A D | test_suite_base64.function | 7 #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 D | test_suite_lmots.function | 5 #if defined(MBEDTLS_TEST_HOOKS) 21 #endif /* defined(MBEDTLS_TEST_HOOKS) */ 223 /* BEGIN_CASE depends_on:MBEDTLS_TEST_HOOKS:MBEDTLS_LMS_PRIVATE */
|
H A D | test_suite_ecp.function | 1090 /* 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 D | test_suite_base64.function | 7 #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 D | test_suite_lmots.function | 5 #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 D | helpers.c | 16 #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 D | psa_memory_poisoning_wrappers.c | 11 #if defined(MBEDTLS_TEST_HOOKS) && defined(MBEDTLS_PSA_CRYPTO_C) \
|
/aosp_15_r20/external/mbedtls/include/mbedtls/ |
H A D | error.h | 116 #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 D | error.h | 116 #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 D | helpers.h | 24 defined(MBEDTLS_TEST_HOOKS) 252 #if defined(MBEDTLS_TEST_HOOKS)
|
/aosp_15_r20/external/mbedtls/library/ |
H A D | common.h | 41 #if defined(MBEDTLS_TEST_HOOKS) 47 #if defined(MBEDTLS_TEST_HOOKS)
|
H A D | base64_internal.h | 16 #if defined(MBEDTLS_TEST_HOOKS)
|
H A D | bignum_mod_raw_invasive.h | 19 #if defined(MBEDTLS_TEST_HOOKS)
|
H A D | ssl_tls13_invasive.h | 15 #if defined(MBEDTLS_TEST_HOOKS)
|
H A D | psa_crypto_invasive.h | 64 #if defined(MBEDTLS_TEST_HOOKS) && defined(MBEDTLS_PSA_CRYPTO_C)
|
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/library/ |
H A D | common.h | 45 #if defined(MBEDTLS_TEST_HOOKS) 51 #if defined(MBEDTLS_TEST_HOOKS)
|
H A D | base64_internal.h | 16 #if defined(MBEDTLS_TEST_HOOKS)
|
H A D | bignum_mod_raw_invasive.h | 19 #if defined(MBEDTLS_TEST_HOOKS)
|
H A D | ssl_tls13_invasive.h | 15 #if defined(MBEDTLS_TEST_HOOKS)
|
/aosp_15_r20/external/mbedtls/docs/architecture/testing/ |
H A D | invasive-testing.md | 36 …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 D | invasive-testing.md | 36 …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 D | ssl_test_lib.c | 15 #if defined(MBEDTLS_TEST_HOOKS) 412 #if defined(MBEDTLS_TEST_HOOKS)
|
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/programs/ssl/ |
H A D | ssl_test_lib.c | 14 #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 D | psa_memory_poisoning_wrappers.h | 22 #if defined(MBEDTLS_TEST_HOOKS) && defined(MBEDTLS_TEST_MEMORY_CAN_POISON)
|
/aosp_15_r20/external/mbedtls/tests/configs/ |
H A D | tls13-only.h | 31 #define MBEDTLS_TEST_HOOKS macro
|