Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_testcapimodule.c5162 Py_tss_t tss_key = Py_tss_NEEDS_INIT; in test_pythread_tss_key_state() local
5163 if (PyThread_tss_is_created(&tss_key)) { in test_pythread_tss_key_state()
5168 if (PyThread_tss_create(&tss_key) != 0) { in test_pythread_tss_key_state()
5172 if (!PyThread_tss_is_created(&tss_key)) { in test_pythread_tss_key_state()
5177 if (PyThread_tss_create(&tss_key) != 0) { in test_pythread_tss_key_state()
5184 if (!PyThread_tss_is_created(&tss_key)) { \ in test_pythread_tss_key_state()
5188 CHECK_TSS_API(PyThread_tss_set(&tss_key, NULL)); in test_pythread_tss_key_state()
5189 CHECK_TSS_API(PyThread_tss_get(&tss_key)); in test_pythread_tss_key_state()
5191 PyThread_tss_delete(&tss_key); in test_pythread_tss_key_state()
5192 if (PyThread_tss_is_created(&tss_key)) { in test_pythread_tss_key_state()