Home
last modified time | relevance | path

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

/bionic/tests/headers/posix/
Dthreads_h.c43 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/
Dthreads.h49 typedef pthread_key_t tss_t; typedef
206 int tss_create(tss_t* _Nonnull __key, tss_dtor_t _Nullable __dtor) __INTRODUCED_IN(30);
211 void tss_delete(tss_t __key) __INTRODUCED_IN(30);
217 void* _Nullable tss_get(tss_t __key) __INTRODUCED_IN(30);
223 int tss_set(tss_t __key, void* _Nonnull __value) __INTRODUCED_IN(30);
/bionic/libc/include/bits/
Dthreads_inlines.h190 __BIONIC_THREADS_INLINE int tss_create(tss_t* _Nonnull __key, tss_dtor_t _Nullable __dtor) { in tss_create()
194 __BIONIC_THREADS_INLINE void tss_delete(tss_t __key) { in tss_delete()
198 __BIONIC_THREADS_INLINE void* _Nullable tss_get(tss_t __key) { in tss_get()
202 __BIONIC_THREADS_INLINE int tss_set(tss_t __key, void* _Nonnull __value) { in tss_set()
/bionic/tests/
Dthreads_test.cpp462 tss_t key; in TEST()
473 tss_t key; in TEST()
502 tss_t key; in TEST()