Home
last modified time | relevance | path

Searched refs:data_identifier (Results 1 – 2 of 2) sorted by relevance

/third_party/mbedtls/library/
Dpsa_crypto_storage.c92 psa_storage_uid_t data_identifier = psa_its_identifier_of_slot(key); in psa_crypto_storage_load() local
96 status = psa_its_get_info(data_identifier, &data_identifier_info); in psa_crypto_storage_load()
101 status = psa_its_get(data_identifier, 0, (uint32_t) data_size, data, &data_length); in psa_crypto_storage_load()
112 psa_storage_uid_t data_identifier = psa_its_identifier_of_slot(key); in psa_is_key_present_in_storage() local
115 ret = psa_its_get_info(data_identifier, &data_identifier_info); in psa_is_key_present_in_storage()
145 psa_storage_uid_t data_identifier = psa_its_identifier_of_slot(key); in psa_crypto_storage_store() local
152 status = psa_its_set(data_identifier, (uint32_t) data_length, data, 0); in psa_crypto_storage_store()
157 status = psa_its_get_info(data_identifier, &data_identifier_info); in psa_crypto_storage_store()
173 (void) psa_its_remove(data_identifier); in psa_crypto_storage_store()
181 psa_storage_uid_t data_identifier = psa_its_identifier_of_slot(key); in psa_destroy_persistent_key() local
[all …]
/third_party/ffmpeg/libavcodec/
Ddvbtxt.h28 static av_always_inline int ff_data_identifier_is_teletext(int data_identifier) in ff_data_identifier_is_teletext() argument
30 return (data_identifier >= 0x10 && data_identifier <= 0x1F || in ff_data_identifier_is_teletext()
31 data_identifier >= 0x99 && data_identifier <= 0x9B); in ff_data_identifier_is_teletext()