Lines Matching defs:key
97 Py_DEPRECATED(3.7) PyAPI_FUNC(void) PyThread_delete_key(int key);
98 Py_DEPRECATED(3.7) PyAPI_FUNC(int) PyThread_set_key_value(int key,
100 Py_DEPRECATED(3.7) PyAPI_FUNC(void *) PyThread_get_key_value(int key);
101 Py_DEPRECATED(3.7) PyAPI_FUNC(void) PyThread_delete_key_value(int key);
114 PyAPI_FUNC(void) PyThread_tss_free(Py_tss_t *key);
116 /* The parameter key must not be NULL. */
117 PyAPI_FUNC(int) PyThread_tss_is_created(Py_tss_t *key);
118 PyAPI_FUNC(int) PyThread_tss_create(Py_tss_t *key);
119 PyAPI_FUNC(void) PyThread_tss_delete(Py_tss_t *key);
120 PyAPI_FUNC(int) PyThread_tss_set(Py_tss_t *key, void *value);
121 PyAPI_FUNC(void *) PyThread_tss_get(Py_tss_t *key);