Lines Matching refs:threads

14 - The testing system has now been made thread-safe. Tests can now spin up multiple threads, see [Th…
23 …tion describes the properties that are followed when PSA functions are invoked by multiple threads.
24 …e-guide) section gives guidance on initializing, using and freeing PSA when using multiple threads.
33 …nvironments, an application can make calls to the Crypto API in separate threads. In such an envir…
43 … section for details on how to correctly initialize the PSA subsystem when using multiple threads).
93 2. The resources from the key have been freed. This allows threads to create similar keys immediate…
101 …or drivers. Driver entry points may be called concurrently from multiple threads. Threads can conc…
115 …o `psa_crypto_init` are explicitly allowed. It is valid to have multiple threads each calling `psa…
119threads can use any PSA function if there is no overlap between their calls. All threads share the…
121 …ntial execution. For example, multiple threads attempting to load the same persistent key can lead…
127 …ces. This is because any such operation would need to wait for all other threads to complete their…
129 `mbedtls_psa_crypto_free` must only be called by a single thread once all threads have completed th…
164 …he slot, this thread is responsible for the next state transition. Other threads cannot read the c…
237 … usually a step in which the effects of the call become visible to other threads). If every call h…
243 …key_creation`; it is at this point that the key becomes visible to other threads. The linearizatio…
255 …al tests to spin up multiple threads. This work has made the global variables used in tests thread…
257 …s. `mbedtls_test_set_step` or `mbedtls_test_increment_step` calls within threads can happen in any…
309 2. The resources from the key have been freed. This allows threads to create similar keys immediate…