| /external/openthread/third_party/mbedtls/repo/include/mbedtls/ | 
| D | entropy.h | 126 typedef struct mbedtls_entropy_context  struct148 mbedtls_entropy_context;  argument
 155 void mbedtls_entropy_init( mbedtls_entropy_context *ctx );
 162 void mbedtls_entropy_free( mbedtls_entropy_context *ctx );
 181 int mbedtls_entropy_add_source( mbedtls_entropy_context *ctx,
 193 int mbedtls_entropy_gather( mbedtls_entropy_context *ctx );
 218 int mbedtls_entropy_update_manual( mbedtls_entropy_context *ctx,
 230 int mbedtls_entropy_update_nv_seed( mbedtls_entropy_context *ctx );
 244 int mbedtls_entropy_write_seed_file( mbedtls_entropy_context *ctx, const char *path );
 258 int mbedtls_entropy_update_seed_file( mbedtls_entropy_context *ctx, const char *path );
 
 | 
| /external/mbedtls/include/mbedtls/ | 
| D | entropy.h | 120 typedef struct mbedtls_entropy_context  struct139 mbedtls_entropy_context;  typedef
 154 void mbedtls_entropy_init( mbedtls_entropy_context *ctx );
 161 void mbedtls_entropy_free( mbedtls_entropy_context *ctx );
 180 int mbedtls_entropy_add_source( mbedtls_entropy_context *ctx,
 192 int mbedtls_entropy_gather( mbedtls_entropy_context *ctx );
 217 int mbedtls_entropy_update_manual( mbedtls_entropy_context *ctx,
 229 int mbedtls_entropy_update_nv_seed( mbedtls_entropy_context *ctx );
 243 int mbedtls_entropy_write_seed_file( mbedtls_entropy_context *ctx, const char *path );
 257 int mbedtls_entropy_update_seed_file( mbedtls_entropy_context *ctx, const char *path );
 
 | 
| /external/mbedtls/library/ | 
| D | entropy.c | 42 void mbedtls_entropy_init( mbedtls_entropy_context *ctx )  in mbedtls_entropy_init()81 void mbedtls_entropy_free( mbedtls_entropy_context *ctx )  in mbedtls_entropy_free()
 104 int mbedtls_entropy_add_source( mbedtls_entropy_context *ctx,  in mbedtls_entropy_add_source()
 141 static int entropy_update( mbedtls_entropy_context *ctx, unsigned char source_id,  in entropy_update()
 197 int mbedtls_entropy_update_manual( mbedtls_entropy_context *ctx,  in mbedtls_entropy_update_manual()
 220 static int entropy_gather_internal( mbedtls_entropy_context *ctx )  in entropy_gather_internal()
 270 int mbedtls_entropy_gather( mbedtls_entropy_context *ctx )  in mbedtls_entropy_gather()
 293     mbedtls_entropy_context *ctx = (mbedtls_entropy_context *) data;  in mbedtls_entropy_func()
 412 int mbedtls_entropy_update_nv_seed( mbedtls_entropy_context *ctx )  in mbedtls_entropy_update_nv_seed()
 433 int mbedtls_entropy_write_seed_file( mbedtls_entropy_context *ctx, const char *path )  in mbedtls_entropy_write_seed_file()
 [all …]
 
 | 
| D | psa_crypto_random_impl.h | 121     void (* entropy_init )( mbedtls_entropy_context *ctx );122     void (* entropy_free )( mbedtls_entropy_context *ctx );
 123     mbedtls_entropy_context entropy;
 184     mbedtls_entropy_context *entropy,  in mbedtls_psa_drbg_seed()
 
 | 
| D | psa_crypto_invasive.h | 72     void (* entropy_init )( mbedtls_entropy_context *ctx ),73     void (* entropy_free )( mbedtls_entropy_context *ctx ) );
 
 | 
| /external/openthread/third_party/mbedtls/repo/library/ | 
| D | entropy.c | 60 void mbedtls_entropy_init( mbedtls_entropy_context *ctx )  in mbedtls_entropy_init()117 void mbedtls_entropy_free( mbedtls_entropy_context *ctx )  in mbedtls_entropy_free()
 143 int mbedtls_entropy_add_source( mbedtls_entropy_context *ctx,  in mbedtls_entropy_add_source()
 180 static int entropy_update( mbedtls_entropy_context *ctx, unsigned char source_id,  in entropy_update()
 236 int mbedtls_entropy_update_manual( mbedtls_entropy_context *ctx,  in mbedtls_entropy_update_manual()
 259 static int entropy_gather_internal( mbedtls_entropy_context *ctx )  in entropy_gather_internal()
 309 int mbedtls_entropy_gather( mbedtls_entropy_context *ctx )  in mbedtls_entropy_gather()
 332     mbedtls_entropy_context *ctx = (mbedtls_entropy_context *) data;  in mbedtls_entropy_func()
 451 int mbedtls_entropy_update_nv_seed( mbedtls_entropy_context *ctx )  in mbedtls_entropy_update_nv_seed()
 472 int mbedtls_entropy_write_seed_file( mbedtls_entropy_context *ctx, const char *path )  in mbedtls_entropy_write_seed_file()
 [all …]
 
 | 
| D | psa_crypto_random_impl.h | 121     void (* entropy_init )( mbedtls_entropy_context *ctx );122     void (* entropy_free )( mbedtls_entropy_context *ctx );
 123     mbedtls_entropy_context entropy;
 184     mbedtls_entropy_context *entropy,  in mbedtls_psa_drbg_seed()
 
 | 
| D | psa_crypto_invasive.h | 76     void (* entropy_init )( mbedtls_entropy_context *ctx ),77     void (* entropy_free )( mbedtls_entropy_context *ctx ) );
 
 | 
| /external/openthread/third_party/mbedtls/repo/tests/suites/ | 
| D | test_suite_entropy.function | 60 static void entropy_clear_sources( mbedtls_entropy_context *ctx )140     mbedtls_entropy_context ctx;
 162     mbedtls_entropy_context ctx;
 177     mbedtls_entropy_context ctx;
 192     mbedtls_entropy_context ctx;
 208     mbedtls_entropy_context ctx;
 234     mbedtls_entropy_context ctx;
 266     mbedtls_entropy_context ctx;
 298     mbedtls_entropy_context ctx;
 349     mbedtls_entropy_context ctx;
 [all …]
 
 | 
| D | test_suite_random.function | 24     mbedtls_entropy_context entropy;63     mbedtls_entropy_context entropy;
 
 | 
| /external/mbedtls/tests/suites/ | 
| D | test_suite_entropy.function | 60 static void entropy_clear_sources( mbedtls_entropy_context *ctx )140     mbedtls_entropy_context ctx;
 162     mbedtls_entropy_context ctx;
 177     mbedtls_entropy_context ctx;
 192     mbedtls_entropy_context ctx;
 208     mbedtls_entropy_context ctx;
 234     mbedtls_entropy_context ctx;
 266     mbedtls_entropy_context ctx;
 298     mbedtls_entropy_context ctx;
 349     mbedtls_entropy_context ctx;
 [all …]
 
 | 
| D | test_suite_random.function | 24     mbedtls_entropy_context entropy;63     mbedtls_entropy_context entropy;
 
 | 
| /external/pigweed/pw_tls_client_mbedtls/public/pw_tls_client_mbedtls/ | 
| D | backend_types.h | 46   mbedtls_entropy_context entropy_ctx_;
 | 
| /external/mbedtls/programs/random/ | 
| D | gen_entropy.c | 44     mbedtls_entropy_context entropy;  in main()
 | 
| D | gen_random_ctr_drbg.c | 48     mbedtls_entropy_context entropy;  in main()
 | 
| /external/openthread/third_party/mbedtls/repo/programs/random/ | 
| D | gen_entropy.c | 58     mbedtls_entropy_context entropy;  in main()
 | 
| D | gen_random_ctr_drbg.c | 62     mbedtls_entropy_context entropy;  in main()
 | 
| /external/mbedtls/programs/pkey/ | 
| D | pk_encrypt.c | 56     mbedtls_entropy_context entropy;  in main()
 | 
| D | pk_decrypt.c | 57     mbedtls_entropy_context entropy;  in main()
 | 
| D | rsa_sign_pss.c | 54     mbedtls_entropy_context entropy;  in main()
 | 
| D | pk_sign.c | 53     mbedtls_entropy_context entropy;  in main()
 | 
| /external/mbedtls/programs/fuzz/ | 
| D | fuzz_privkey.c | 23     mbedtls_entropy_context entropy;  in LLVMFuzzerTestOneInput()
 | 
| D | fuzz_dtlsclient.c | 40     mbedtls_entropy_context entropy;  in LLVMFuzzerTestOneInput()
 | 
| /external/openthread/third_party/mbedtls/repo/programs/fuzz/ | 
| D | fuzz_dtlsclient.c | 39     mbedtls_entropy_context entropy;  in LLVMFuzzerTestOneInput()
 | 
| /external/mbedtls/programs/ssl/ | 
| D | ssl_test_lib.h | 153     mbedtls_entropy_context entropy;
 |