Searched refs:tss_t (Results 1 – 4 of 4) sorted by relevance
/bionic/tests/headers/posix/ |
D | threads_h.c | 43 TYPE(tss_t); in threads_h() 79 FUNCTION(tss_create, int (*f)(tss_t*, tss_dtor_t)); in threads_h() 80 FUNCTION(tss_delete, void (*f)(tss_t)); in threads_h() 81 FUNCTION(tss_get, void* (*f)(tss_t)); in threads_h() 82 FUNCTION(tss_set, int (*f)(tss_t, void*)); in threads_h()
|
/bionic/libc/include/ |
D | threads.h | 49 typedef pthread_key_t tss_t; typedef 206 int tss_create(tss_t* __key, tss_dtor_t __dtor) __INTRODUCED_IN(30); 211 void tss_delete(tss_t __key) __INTRODUCED_IN(30); 217 void* tss_get(tss_t __key) __INTRODUCED_IN(30); 223 int tss_set(tss_t __key, void* __value) __INTRODUCED_IN(30);
|
/bionic/libc/include/bits/ |
D | threads_inlines.h | 191 __BIONIC_THREADS_INLINE int tss_create(tss_t* __key, tss_dtor_t __dtor) { in tss_create() 195 __BIONIC_THREADS_INLINE void tss_delete(tss_t __key) { in tss_delete() 199 __BIONIC_THREADS_INLINE void* tss_get(tss_t __key) { in tss_get() 203 __BIONIC_THREADS_INLINE int tss_set(tss_t __key, void* __value) { in tss_set()
|
/bionic/tests/ |
D | threads_test.cpp | 461 tss_t key; in TEST() 472 tss_t key; in TEST() 501 tss_t key; in TEST()
|