Home
last modified time | relevance | path

Searched refs:Py_tss_t (Results 1 - 7 of 7) sorted by relevance

/third_party/python/Include/
H A Dpythread.h111 typedef struct _Py_tss_t Py_tss_t; /* opaque */ typedef
113 PyAPI_FUNC(Py_tss_t *) PyThread_tss_alloc(void);
114 PyAPI_FUNC(void) PyThread_tss_free(Py_tss_t *key);
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);
/third_party/python/Python/
H A Dthread.c142 Py_tss_t *
145 Py_tss_t *new_key = (Py_tss_t *)PyMem_RawMalloc(sizeof(Py_tss_t)); in PyThread_tss_alloc()
154 PyThread_tss_free(Py_tss_t *key) in PyThread_tss_free()
163 PyThread_tss_is_created(Py_tss_t *key) in PyThread_tss_is_created()
H A Dthread_nt.h462 PyThread_tss_create(Py_tss_t *key) in PyThread_tss_create()
481 PyThread_tss_delete(Py_tss_t *key) in PyThread_tss_delete()
495 PyThread_tss_set(Py_tss_t *key, void *value) in PyThread_tss_set()
503 PyThread_tss_get(Py_tss_t *key) in PyThread_tss_get()
H A Dthread_pthread.h885 PyThread_tss_create(Py_tss_t *key) in PyThread_tss_create()
902 PyThread_tss_delete(Py_tss_t *key) in PyThread_tss_delete()
916 PyThread_tss_set(Py_tss_t *key, void *value) in PyThread_tss_set()
924 PyThread_tss_get(Py_tss_t *key) in PyThread_tss_get()
/third_party/python/Include/internal/
H A Dpycore_runtime.h43 Py_tss_t autoTSSkey;
/third_party/python/Modules/
H A D_tracemalloc.c158 static Py_tss_t tracemalloc_reentrant_key = Py_tss_NEEDS_INIT;
H A D_testcapimodule.c5460 Py_tss_t tss_key = Py_tss_NEEDS_INIT; in test_pythread_tss_key_state()
5496 Py_tss_t *ptr_key = PyThread_tss_alloc(); in test_pythread_tss_key_state()

Completed in 15 milliseconds