Home
last modified time | relevance | path

Searched refs:stats (Results 1 – 4 of 4) sorted by relevance

/openthread-2.7.6/third_party/mbedtls/repo/tests/include/test/
Dpsa_crypto_helpers.h31 mbedtls_psa_stats_t stats; in test_helper_is_psa_pristine() local
34 mbedtls_psa_get_stats( &stats ); in test_helper_is_psa_pristine()
36 if( stats.volatile_slots != 0 ) in test_helper_is_psa_pristine()
38 else if( stats.persistent_slots != 0 ) in test_helper_is_psa_pristine()
40 else if( stats.external_slots != 0 ) in test_helper_is_psa_pristine()
42 else if( stats.half_filled_slots != 0 ) in test_helper_is_psa_pristine()
44 else if( stats.locked_slots != 0 ) in test_helper_is_psa_pristine()
/openthread-2.7.6/third_party/mbedtls/repo/library/
Dpsa_crypto_slot_management.c441 void mbedtls_psa_get_stats( mbedtls_psa_stats_t *stats ) in mbedtls_psa_get_stats() argument
445 memset( stats, 0, sizeof( *stats ) ); in mbedtls_psa_get_stats()
452 ++stats->locked_slots; in mbedtls_psa_get_stats()
456 ++stats->empty_slots; in mbedtls_psa_get_stats()
460 ++stats->volatile_slots; in mbedtls_psa_get_stats()
464 ++stats->persistent_slots; in mbedtls_psa_get_stats()
465 if( id > stats->max_open_internal_key_id ) in mbedtls_psa_get_stats()
466 stats->max_open_internal_key_id = id; in mbedtls_psa_get_stats()
471 ++stats->external_slots; in mbedtls_psa_get_stats()
472 if( id > stats->max_open_external_key_id ) in mbedtls_psa_get_stats()
[all …]
/openthread-2.7.6/src/core/diags/
DREADME.md16 - [diag stats](#diag-stats)
139 ### diag stats
144 > diag stats
151 ### diag stats clear
156 > diag stats clear
157 stats cleared
/openthread-2.7.6/third_party/mbedtls/repo/include/psa/
Dcrypto_extra.h249 void mbedtls_psa_get_stats( mbedtls_psa_stats_t *stats );