/bionic/libc/kernel/common/linux/ |
D | lockdep.h | 31 #define lockdep_init_map(lock, name, key) do { (void)(key); } while (0) argument 32 #define lockdep_set_class(lock, key) do { (void)(key); } while (0) argument 34 #define lockdep_set_class_and_name(lock, key, name) do { (void)(key); } while (0) argument
|
D | kmod.h | 27 struct key;
|
D | ipc.h | 26 __kernel_key_t key; member
|
D | soundcard.h | 179 unsigned short key; member 236 short key; member 325 unsigned short key; member 852 #define SEQ_ECHO_BACK(key) _TIMER_EVENT(TMR_ECHO, key) argument
|
D | videodev.h | 214 __u8 key[8]; member
|
D | pkt_cls.h | 259 __u32 key; member
|
/bionic/libc/stdlib/ |
D | bsearch.c | 49 bsearch(const void *key, const void *base0, size_t nmemb, size_t size, in bsearch() argument 58 cmp = (*compar)(key, p); in bsearch()
|
/bionic/libc/bionic/ |
D | tsearch.c | 42 if ((r = (*compar)(vkey, (*rootp)->key)) == 0) /* T2: */ 54 q->key = (void *)vkey; /* initialize new node */
|
D | pthread.c | 1835 #define TLSMAP_VALIDATE_KEY(key) \ argument 1836 ((key) >= TLSMAP_START && (key) < TLSMAP_SIZE) 1877 static __inline__ int tlsmap_test(tlsmap_t* m, int key) in tlsmap_test() argument 1879 return (TLSMAP_WORD(m,key) & TLSMAP_MASK(key)) != 0; in tlsmap_test() 1883 static __inline__ void tlsmap_set(tlsmap_t* m, int key, tls_dtor_t dtor) in tlsmap_set() argument 1885 TLSMAP_WORD(m,key) |= TLSMAP_MASK(key); in tlsmap_set() 1886 m->dtors[key] = dtor; in tlsmap_set() 1890 static __inline__ void tlsmap_clear(tlsmap_t* m, int key) in tlsmap_clear() argument 1892 TLSMAP_WORD(m,key) &= ~TLSMAP_MASK(key); in tlsmap_clear() 1893 m->dtors[key] = NULL; in tlsmap_clear() [all …]
|
D | tdestroy.c | 31 (*destroy_func)(root_node->key); in tdestroy()
|
D | tfind.c | 41 if ((r = (*compar)(vkey, (*rootp)->key)) == 0) /* T2: */
|
D | system_properties.c | 218 int __system_property_set(const char *key, const char *value) in __system_property_set() argument 225 if(key == 0) return -1; in __system_property_set() 227 if(strlen(key) >= PROP_NAME_MAX) return -1; in __system_property_set() 232 strlcpy(msg.name, key, sizeof msg.name); in __system_property_set()
|
D | pthread_debug.c | 703 static uint32_t get_hashcode(void const * key, size_t keySize) in get_hashcode() argument 706 char const* data = (char const*)key; in get_hashcode() 745 void const* key, size_t ksize, in hashmap_lookup() argument 746 int (*equals)(void const* data, void const* key)) in hashmap_lookup() 748 const uint32_t hash = get_hashcode(key, ksize); in hashmap_lookup() 753 if (equals(entry->data, key)) { in hashmap_lookup() 776 static int MutexInfo_equals(void const* data, void const* key) { in MutexInfo_equals() argument 777 return ((MutexInfo const *)data)->mutex == *(pthread_mutex_t **)key; in MutexInfo_equals() 799 static int ThreadInfo_equals(void const* data, void const* key) { in ThreadInfo_equals() argument 800 return ((ThreadInfo const *)data)->pid == *(pid_t *)key; in ThreadInfo_equals()
|
D | tdelete.c | 45 while ((cmp = (*compar)(vkey, (*rootp)->key)) != 0) { in tdelete()
|
/bionic/libc/kernel/common/linux/netfilter_ipv4/ |
D | ip_conntrack_tuple.h | 44 __be16 key; member 79 __be16 key; member
|
/bionic/libc/kernel/arch-mips/asm/ |
D | ipcbuf.h | 24 __kernel_key_t key; member
|
D | sgiarcs.h | 87 ULONG key; member
|
/bionic/libc/kernel/arch-arm/asm/ |
D | ipcbuf.h | 24 __kernel_key_t key; member
|
/bionic/libc/kernel/arch-x86/asm/ |
D | ipcbuf.h | 24 __kernel_key_t key; member
|
/bionic/libc/include/sys/ |
D | system_properties.h | 51 int __system_property_set(const char *key, const char *value);
|
/bionic/libc/include/ |
D | search.h | 31 char *key; member
|
D | pthread.h | 261 int pthread_key_create(pthread_key_t *key, void (*destructor_function)(void *)); 263 int pthread_setspecific(pthread_key_t key, const void *value); 264 void *pthread_getspecific(pthread_key_t key);
|
D | stdlib.h | 101 extern void * bsearch(const void *key, const void *base0,
|
/bionic/libc/netbsd/resolv/ |
D | res_cache.c | 1360 Entry* key ) in _cache_lookup_p() argument 1362 int index = key->hash % cache->max_entries; in _cache_lookup_p() 1371 if (node->hash == key->hash && entry_equals(node, key)) in _cache_lookup_p() 1446 Entry key[1]; in _resolv_cache_lookup() local 1458 if (!entry_init_key(key, query, querylen)) { in _resolv_cache_lookup() 1468 lookup = _cache_lookup_p(cache, key); in _resolv_cache_lookup() 1518 Entry key[1]; in _resolv_cache_add() local 1525 if (!entry_init_key( key, query, querylen )) { in _resolv_cache_add() 1540 lookup = _cache_lookup_p(cache, key); in _resolv_cache_add() 1552 lookup = _cache_lookup_p(cache, key); in _resolv_cache_add() [all …]
|
D | res_data.c | 245 res_sendsigned(const u_char *buf, int buflen, ns_tsig_key *key, in res_sendsigned() argument 253 return (res_nsendsigned(&_nres, buf, buflen, key, ans, anssiz)); in res_sendsigned()
|