Home
last modified time | relevance | path

Searched refs:key (Results 1 – 25 of 30) sorted by relevance

12

/bionic/libc/kernel/common/linux/
Dlockdep.h31 #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
Dkmod.h27 struct key;
Dipc.h26 __kernel_key_t key; member
Dsoundcard.h179 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
Dvideodev.h214 __u8 key[8]; member
Dpkt_cls.h259 __u32 key; member
/bionic/libc/stdlib/
Dbsearch.c49 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/
Dtsearch.c42 if ((r = (*compar)(vkey, (*rootp)->key)) == 0) /* T2: */
54 q->key = (void *)vkey; /* initialize new node */
Dpthread.c1835 #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 …]
Dtdestroy.c31 (*destroy_func)(root_node->key); in tdestroy()
Dtfind.c41 if ((r = (*compar)(vkey, (*rootp)->key)) == 0) /* T2: */
Dsystem_properties.c218 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()
Dpthread_debug.c703 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()
Dtdelete.c45 while ((cmp = (*compar)(vkey, (*rootp)->key)) != 0) { in tdelete()
/bionic/libc/kernel/common/linux/netfilter_ipv4/
Dip_conntrack_tuple.h44 __be16 key; member
79 __be16 key; member
/bionic/libc/kernel/arch-mips/asm/
Dipcbuf.h24 __kernel_key_t key; member
Dsgiarcs.h87 ULONG key; member
/bionic/libc/kernel/arch-arm/asm/
Dipcbuf.h24 __kernel_key_t key; member
/bionic/libc/kernel/arch-x86/asm/
Dipcbuf.h24 __kernel_key_t key; member
/bionic/libc/include/sys/
Dsystem_properties.h51 int __system_property_set(const char *key, const char *value);
/bionic/libc/include/
Dsearch.h31 char *key; member
Dpthread.h261 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);
Dstdlib.h101 extern void * bsearch(const void *key, const void *base0,
/bionic/libc/netbsd/resolv/
Dres_cache.c1360 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 …]
Dres_data.c245 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()

12