/optee_os/core/kernel/ |
A D | dt_driver.c | 141 prv = calloc(1, sizeof(*prv)); in dt_driver_register_provider() 142 if (!prv) in dt_driver_register_provider() 146 prv->type = type; in dt_driver_register_provider() 148 prv->phandle = phandle; in dt_driver_register_provider() 150 prv->priv_data = priv; in dt_driver_register_provider() 200 if (prv->nodeoffset == nodeoffset && prv->type == type) in dt_driver_get_provider_by_node() 201 return prv; in dt_driver_get_provider_by_node() 212 if (prv->phandle == phandle && prv->type == type) in dt_driver_get_provider_by_phandle() 213 return prv; in dt_driver_get_provider_by_phandle() 237 device = prv->get_of_device(pargs, prv->priv_data, res); in device_from_provider_prop() [all …]
|
/optee_os/lib/libmbedtls/mbedtls/library/ |
A D | ssl_cache.c | 146 mbedtls_ssl_cache_entry *cur, *prv; in mbedtls_ssl_cache_set() local 155 prv = NULL; in mbedtls_ssl_cache_set() 181 prv = cur; in mbedtls_ssl_cache_set() 217 prv->next = cur; in mbedtls_ssl_cache_set() 232 if( prv == NULL ) in mbedtls_ssl_cache_set() 235 prv->next = cur; in mbedtls_ssl_cache_set() 320 mbedtls_ssl_cache_entry *cur, *prv; in mbedtls_ssl_cache_free() local 326 prv = cur; in mbedtls_ssl_cache_free() 329 mbedtls_ssl_session_free( &prv->session ); in mbedtls_ssl_cache_free() 333 mbedtls_free( prv->peer_cert.p ); in mbedtls_ssl_cache_free() [all …]
|
A D | pk.c | 507 int mbedtls_pk_check_pair( const mbedtls_pk_context *pub, const mbedtls_pk_context *prv ) in mbedtls_pk_check_pair() argument 510 PK_VALIDATE_RET( prv != NULL ); in mbedtls_pk_check_pair() 513 prv->pk_info == NULL ) in mbedtls_pk_check_pair() 518 if( prv->pk_info->check_pair_func == NULL ) in mbedtls_pk_check_pair() 521 if( prv->pk_info->type == MBEDTLS_PK_RSA_ALT ) in mbedtls_pk_check_pair() 528 if( pub->pk_info != prv->pk_info ) in mbedtls_pk_check_pair() 532 return( prv->pk_info->check_pair_func( pub->pk_ctx, prv->pk_ctx ) ); in mbedtls_pk_check_pair()
|
A D | pk_wrap.c | 156 static int rsa_check_pair_wrap( const void *pub, const void *prv ) in rsa_check_pair_wrap() argument 159 (const mbedtls_rsa_context *) prv ) ); in rsa_check_pair_wrap() 384 static int eckey_check_pair( const void *pub, const void *prv ) in eckey_check_pair() argument 387 (const mbedtls_ecp_keypair *) prv ) ); in eckey_check_pair() 795 static int rsa_alt_check_pair( const void *pub, const void *prv ) in rsa_alt_check_pair() argument 802 if( rsa_alt_get_bitlen( prv ) != rsa_get_bitlen( pub ) ) in rsa_alt_check_pair() 807 if( ( ret = rsa_alt_sign_wrap( (void *) prv, MBEDTLS_MD_NONE, in rsa_alt_check_pair()
|
A D | des.c | 874 unsigned char prv[8]; in mbedtls_des_self_test() local 967 memcpy( prv, des3_test_iv, 8 ); in mbedtls_des_self_test() 1021 memcpy( tmp, prv, 8 ); in mbedtls_des_self_test() 1022 memcpy( prv, buf, 8 ); in mbedtls_des_self_test() 1026 memcpy( buf, prv, 8 ); in mbedtls_des_self_test()
|
A D | memory_buffer_alloc.c | 175 memory_header *prv = heap.first, *cur; in verify_chain() local 177 if( prv == NULL || verify_header( prv ) != 0 ) in verify_chain() 208 if( cur->prev != prv ) in verify_chain() 217 prv = cur; in verify_chain()
|
A D | ecp.c | 3360 int mbedtls_ecp_check_pub_priv( const mbedtls_ecp_keypair *pub, const mbedtls_ecp_keypair *prv ) in mbedtls_ecp_check_pub_priv() argument 3366 ECP_VALIDATE_RET( prv != NULL ); in mbedtls_ecp_check_pub_priv() 3369 pub->grp.id != prv->grp.id || in mbedtls_ecp_check_pub_priv() 3370 mbedtls_mpi_cmp_mpi( &pub->Q.X, &prv->Q.X ) || in mbedtls_ecp_check_pub_priv() 3371 mbedtls_mpi_cmp_mpi( &pub->Q.Y, &prv->Q.Y ) || in mbedtls_ecp_check_pub_priv() 3372 mbedtls_mpi_cmp_mpi( &pub->Q.Z, &prv->Q.Z ) ) in mbedtls_ecp_check_pub_priv() 3381 mbedtls_ecp_group_copy( &grp, &prv->grp ); in mbedtls_ecp_check_pub_priv() 3384 MBEDTLS_MPI_CHK( mbedtls_ecp_mul( &grp, &Q, &prv->d, &prv->grp.G, NULL, NULL ) ); in mbedtls_ecp_check_pub_priv() 3386 if( mbedtls_mpi_cmp_mpi( &Q.X, &prv->Q.X ) || in mbedtls_ecp_check_pub_priv() 3387 mbedtls_mpi_cmp_mpi( &Q.Y, &prv->Q.Y ) || in mbedtls_ecp_check_pub_priv() [all …]
|
/optee_os/scripts/ |
A D | update_changelog.py | 65 prv = args.previous_release_version 67 prd = get_previous_release_date(prv) 92 "{}...{}\n".format(gu, rvu, g, prv, rv)
|
/optee_os/core/include/kernel/ |
A D | dt_driver.h | 118 unsigned int dt_driver_provider_cells(struct dt_driver_provider *prv);
|
/optee_os/out/arm/export-ta_arm32/host_include/mbedtls/ |
A D | pk_internal.h | 88 int (*check_pair_func)( const void *pub, const void *prv );
|
A D | rsa.h | 514 const mbedtls_rsa_context *prv );
|
A D | pk.h | 613 int mbedtls_pk_check_pair( const mbedtls_pk_context *pub, const mbedtls_pk_context *prv );
|
A D | ecp.h | 1287 const mbedtls_ecp_keypair *prv );
|
/optee_os/out/arm/export-ta_arm64/host_include/mbedtls/ |
A D | pk_internal.h | 88 int (*check_pair_func)( const void *pub, const void *prv );
|
A D | rsa.h | 514 const mbedtls_rsa_context *prv );
|
A D | pk.h | 613 int mbedtls_pk_check_pair( const mbedtls_pk_context *pub, const mbedtls_pk_context *prv );
|
/optee_os/lib/libmbedtls/mbedtls/include/mbedtls/ |
A D | pk_internal.h | 88 int (*check_pair_func)( const void *pub, const void *prv );
|
A D | rsa.h | 514 const mbedtls_rsa_context *prv );
|
A D | pk.h | 613 int mbedtls_pk_check_pair( const mbedtls_pk_context *pub, const mbedtls_pk_context *prv );
|
/optee_os/out/arm/export-ta_arm64/include/mbedtls/ |
A D | pk_internal.h | 88 int (*check_pair_func)( const void *pub, const void *prv );
|
A D | rsa.h | 514 const mbedtls_rsa_context *prv );
|
A D | pk.h | 613 int mbedtls_pk_check_pair( const mbedtls_pk_context *pub, const mbedtls_pk_context *prv );
|
/optee_os/out/arm/export-ta_arm32/include/mbedtls/ |
A D | pk_internal.h | 88 int (*check_pair_func)( const void *pub, const void *prv );
|
A D | rsa.h | 514 const mbedtls_rsa_context *prv );
|
A D | pk.h | 613 int mbedtls_pk_check_pair( const mbedtls_pk_context *pub, const mbedtls_pk_context *prv );
|