Home
last modified time | relevance | path

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

/bionic/libc/include/bits/
Dthreads_inlines.h189 __BIONIC_THREADS_INLINE int tss_create(tss_t* __key, tss_dtor_t __dtor) { in tss_create() argument
190 return __bionic_thrd_error(pthread_key_create(__key, __dtor)); in tss_create()
193 __BIONIC_THREADS_INLINE void tss_delete(tss_t __key) { in tss_delete() argument
194 pthread_key_delete(__key); in tss_delete()
197 __BIONIC_THREADS_INLINE void* tss_get(tss_t __key) { in tss_get() argument
198 return pthread_getspecific(__key); in tss_get()
201 __BIONIC_THREADS_INLINE int tss_set(tss_t __key, void* __value) { in tss_set() argument
202 return __bionic_thrd_error(pthread_setspecific(__key, __value)); in tss_set()
/bionic/libc/include/
Dsearch.h161 void* _Nullable lfind(const void* _Nonnull __key, const void* _Nonnull __array, size_t* _Nonnull __…
176 void* _Nonnull lsearch(const void* _Nonnull __key, void* _Nonnull __array, size_t* _Nonnull __count…
185 void* _Nullable tdelete(const void* _Nonnull __key, void* _Nullable * _Nullable __root_ptr, int (* …
200 void* _Nullable tfind(const void* _Nonnull __key, void* _Nullable const* _Nullable __root_ptr, int …
211 void* _Nullable tsearch(const void* _Nonnull __key, void* _Nullable * _Nullable __root_ptr, int (* …
Dthreads.h206 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);
Dpthread.h170 void* _Nullable pthread_getspecific(pthread_key_t __key);
177 int pthread_key_delete(pthread_key_t __key);
305 int pthread_setspecific(pthread_key_t __key, const void* _Nullable __value);
Dstdlib.h92 void* _Nullable bsearch(const void* _Nonnull __key, const void* _Nullable __base, size_t __nmemb, s…
/bionic/libc/include/sys/
Dipc.h41 #define __key key macro
Dshm.h56 int shmget(key_t __key, size_t __size, int __flags) __INTRODUCED_IN(26);
Dmsg.h51 int msgget(key_t __key, int __flags) __INTRODUCED_IN(26);
Dsem.h55 int semget(key_t __key, int __sem_count, int __flags) __INTRODUCED_IN(26);