Searched refs:key_data (Results 1 – 4 of 4) sorted by relevance
/Zephyr-latest/lib/posix/options/ |
D | key.c | 129 struct pthread_key_data *key_data; in pthread_key_delete() local 143 key_data = (struct pthread_key_data *)sys_slist_get(&(key_obj->key_data_l)); in pthread_key_delete() 146 k_free((void *)key_data); in pthread_key_delete() 147 LOG_DBG("Freed key data %p for key %x in thread %x", key_data, key, in pthread_key_delete() 172 struct pthread_key_data *key_data; in pthread_setspecific() local 211 key_data = k_malloc(sizeof(struct pthread_key_data)); in pthread_setspecific() 213 if (key_data == NULL) { in pthread_setspecific() 219 LOG_DBG("Allocated key data %p for key %x in thread %x", key_data, key, in pthread_setspecific() 223 key_data->thread_data.key = key_obj; in pthread_setspecific() 224 key_data->thread_data.spec_data = (void *)value; in pthread_setspecific() [all …]
|
D | pthread.c | 470 struct pthread_key_data *key_data; in posix_thread_finalize() local 485 key_data = (struct pthread_key_data *)node_key_data; in posix_thread_finalize() 486 if (&key_data->thread_data == thread_spec_data) { in posix_thread_finalize() 492 k_free(key_data); in posix_thread_finalize()
|
/Zephyr-latest/subsys/bluetooth/host/ |
D | keys.c | 45 struct key_data { struct 52 struct key_data *kdata = data; in find_key_in_use() argument 75 struct key_data kdata = { false, id }; in key_is_in_use()
|
/Zephyr-latest/samples/tfm_integration/psa_crypto/src/ |
D | psa_crypto.c | 112 uint8_t *key_data) in crp_imp_key_secp256r1() argument 137 psa_import_key(&key_attributes, key_data, key_len, &key_handle), in crp_imp_key_secp256r1() 184 comp_result = memcmp(data_out, key_data, key_len); in crp_imp_key_secp256r1()
|