Home
last modified time | relevance | path

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

/bionic/libc/include/bits/
Dthreads_inlines.h191 __BIONIC_THREADS_INLINE int tss_create(tss_t* __key, tss_dtor_t __dtor) { in tss_create() argument
192 return __bionic_thrd_error(pthread_key_create(__key, __dtor)); in tss_create()
195 __BIONIC_THREADS_INLINE void tss_delete(tss_t __key) { in tss_delete() argument
196 pthread_key_delete(__key); in tss_delete()
199 __BIONIC_THREADS_INLINE void* tss_get(tss_t __key) { in tss_get() argument
200 return pthread_getspecific(__key); in tss_get()
203 __BIONIC_THREADS_INLINE int tss_set(tss_t __key, void* __value) { in tss_set() argument
204 return __bionic_thrd_error(pthread_setspecific(__key, __value)); in tss_set()
/bionic/libc/include/
Dsearch.h161 void* lfind(const void* __key, const void* __array, size_t* __count, size_t __size, int (*__compara…
176 void* lsearch(const void* __key, void* __array, size_t* __count, size_t __size, int (*__comparator)…
185 void* tdelete(const void* __key, void** __root_ptr, int (*__comparator)(const void*, const void*));
200 void* tfind(const void* __key, void* const* __root_ptr, int (*__comparator)(const void*, const void…
211 void* tsearch(const void* __key, void** __root_ptr, int (*__comparator)(const void*, const void*));
Dthreads.h206 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);
Dpthread.h170 void* pthread_getspecific(pthread_key_t __key);
177 int pthread_key_delete(pthread_key_t __key);
289 int pthread_setspecific(pthread_key_t __key, const void* __value);
Dstdlib.h96 void* bsearch(const void* __key, const void* __base, size_t __nmemb, size_t __size, int (*__compara…
/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);