Lines Matching refs:data_identifier_info
81 struct psa_storage_info_t data_identifier_info; in psa_crypto_storage_load() local
84 status = psa_its_get_info(data_identifier, &data_identifier_info); in psa_crypto_storage_load()
101 struct psa_storage_info_t data_identifier_info; in psa_is_key_present_in_storage() local
103 ret = psa_its_get_info(data_identifier, &data_identifier_info); in psa_is_key_present_in_storage()
134 struct psa_storage_info_t data_identifier_info; in psa_crypto_storage_store() local
145 status = psa_its_get_info(data_identifier, &data_identifier_info); in psa_crypto_storage_store()
150 if (data_identifier_info.size != data_length) { in psa_crypto_storage_store()
170 struct psa_storage_info_t data_identifier_info; in psa_destroy_persistent_key() local
172 ret = psa_its_get_info(data_identifier, &data_identifier_info); in psa_destroy_persistent_key()
181 ret = psa_its_get_info(data_identifier, &data_identifier_info); in psa_destroy_persistent_key()
207 struct psa_storage_info_t data_identifier_info; in psa_crypto_storage_get_data_length() local
209 status = psa_its_get_info(data_identifier, &data_identifier_info); in psa_crypto_storage_get_data_length()
214 *data_length = (size_t) data_identifier_info.size; in psa_crypto_storage_get_data_length()